home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / inter36b.zip / INTERRUP.E < prev    next >
Text File  |  1993-08-01  |  254KB  |  6,778 lines

  1. Interrupt List, part 5 of 10
  2. This compilation is Copyright (c) 1989,1990,1991,1992,1993 Ralf Brown
  3. --------D-2180-------------------------------
  4. INT 21 - European MS-DOS 4.0 - "AEXEC" - EXECUTE PROGRAM IN BACKGROUND
  5.     AH = 80h
  6.     CX = mode
  7.         0000h place child in zombie mode on exit to preserve exit code
  8.         0001h discard child process and exit code on termination
  9.     DS:DX -> ASCIZ full program name
  10.     ES:BX -> parameter block (as for AX=4B00h)
  11. Return: CF clear if successful
  12.         AX = Command Subgroup ID (CSID)
  13.     CF set on error
  14.         AX = error code (see AH=59h)
  15. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  16.       by several other European OEMs; its release falls between mainstream
  17.       versions 3.2 and 3.3
  18. Desc:    asynchronously execute a program, creating a new process for it
  19. Notes:    this function is called by the DETACH command
  20.     there is a system-wide limit of 32 processes
  21.     the CSID is used to identify all processes that have been spawned by
  22.       a given process, whether directly or indirectly
  23.     programs to be run in the background must use the new executable format
  24.       (see AH=4Bh)
  25.     background processes may only perform asynchronous (background) EXECs,
  26.       either this function or AX=4B04h
  27.     background processes may execute INT 11, INT 12, INT 21, INT 2A, and
  28.       INT 2F at any time; they may execute INT 10 and INT 16 only while
  29.       they have opened a popup screen via INT 2F/AX=1401h; no other
  30.       interrupts may be executed from the background
  31.     background processes may not use drive B: or overlay their code
  32.       segments
  33.     see AX=8700h for an installation check
  34.     the "NE" new executable format made its first appearance in European
  35.       MS-DOS 4.0
  36. SeeAlso: AH=4Bh,AH=87h,INT 2F/AX=1400h"POPUP"
  37. ----------218080-----------------------------
  38. INT 21 - PCW Weather Card interface - UNINSTALL PCW.COM AND FREE MEMORY
  39.     AX = 8080h
  40. Return: ???
  41. SeeAlso: AX=7070h/BX=7070h
  42. --------D-2181-------------------------------
  43. INT 21 - European MS-DOS 4.0 - "FREEZE" - STOP A PROCESS
  44.     AH = 81h
  45.     BX = flag (00h freeze command subtree, 01h only specified process)
  46.     CX = Process ID of head of command subtree
  47. Return: CF clear if successful
  48.     CF set on error
  49.         AX = error code (no such process)
  50. Desc:    temporarily suspend a process or a process and all of its children
  51. Note:    if BX=0001h, this call will not return until the process is actually
  52.       frozen, which may not be until after it unblocks from an I/O
  53.       operation
  54. SeeAlso: AH=82h,AH=89h,AX=8E00h,INT 15/AX=101Dh
  55. --------D-2182-------------------------------
  56. INT 21 - European MS-DOS 4.0 - "RESUME" - RESTART A PROCESS
  57.     AH = 82h
  58.     BX = flag (00h resume command subtree, 01h only specified process)
  59.     CX = Process ID of head of command subtree
  60. Return: CF clear if successful
  61.     CF set on error
  62.         AX = error code (no such process)
  63. Desc:    restart a previously-suspended process or a process and all of its
  64.       children
  65. SeeAlso: AH=81h,INT 15/AX=101Eh
  66. --------D-2183-------------------------------
  67. INT 21 - European MS-DOS 4.0 - "PARTITION" - GET/SET FOREGROUND PARTITION SIZE
  68.     AH = 83h
  69.     AL = function
  70.         00h get size
  71.         01h set new size
  72.         BX = new size in paragraphs
  73. Return: CF clear if successful
  74.         BX = current size (function 00h) or old size (function 01h)
  75.     CF set on error
  76.         AX = error code (01h,07h,0Dh)(see AH=59h)
  77. Desc:    specify or determine how much memory may be allocated by the foreground
  78.       process
  79. Note:    if the partition size is set to 0000h, no partition management is done
  80.       and all memory allocation is compatible with DOS 3.2.
  81.     the partition size can be changed regardless of what use is being made
  82.       of the changed memory; subsequent allocations will follow the
  83.       partition rules (foreground processes may allocate only foreground
  84.       memory; background processes allocate background memory first, then
  85.       foreground memory)
  86. SeeAlso: AH=48h,AH=4Ah
  87. --------v-2183-------------------------------
  88. INT 21 - VIRUS - "SVC" - INSTALLATION CHECK
  89.     AH = 83h
  90. Return: DX = 1990h if resident
  91. SeeAlso: AH=76h,AH=84h"VIRUS"
  92. --------v-2184-------------------------------
  93. INT 21 - VIRUS - "SVC 5.0" or "SVC 6.0" - INSTALLATION CHECK
  94.     AH = 84h
  95. Return: DX = 1990h if resident
  96.         BH = version number (major in high nybble, minor in low)
  97. SeeAlso: AH=83h"VIRUS",AH=89h"VIRUS"
  98. --------D-218400-----------------------------
  99. INT 21 - European MS-DOS 4.0 - "CREATMEM" - CREATE A SHARED MEMORY AREA
  100.     AX = 8400h
  101.     BX = size in bytes (0000h = 65536)
  102.     CX = flags
  103.         bit 6: zero-initialize segment
  104.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  105. Return: CF clear if successful
  106.         AX = segment address of shared memory global object
  107.     CF set on error
  108.         AX = error code (06h,08h) (see AH=59h)
  109. Desc:    create an area of memory which may be accessed by multiple processes
  110. Notes:    shared memory objects are created as special files (thus the
  111.       restriction on the name)
  112.     on successful creation, the reference count is set to 1
  113. SeeAlso: AX=8401h,AX=8402h,INT 15/AX=DE19h
  114. --------D-218401-----------------------------
  115. INT 21 - European MS-DOS 4.0 - "GETMEM" - OBTAIN ACCESS TO SHARED MEMORY AREA
  116.     AX = 8401h
  117.     CX = flags
  118.         bit 7: writable segment (ignored by MS-DOS 4.0)
  119.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  120. Return: CF clear if successful
  121.         AX = segment address of shared memory global object
  122.         CX = size in bytes
  123.     CF set on error
  124.         AX = error code (invalid name)
  125. Desc:    get address of a previously-created area of memory which may be
  126.       accessed by multiple processes
  127. Note:    this call increments the reference count for the shared memory area
  128. SeeAlso: AX=8400h,AX=8402h
  129. --------D-218402-----------------------------
  130. INT 21 - European MS-DOS 4.0 - "RELEASEMEM" - FREE SHARED MEMORY AREA
  131.     AX = 8402h
  132.     BX = handle (segment address of shared memory object)
  133. Return: CF clear if successful
  134.     CF set on error
  135.         AX = error code (no such name)
  136. Desc:    indicate that the specified area of shared memory will no longer be
  137.       used by the caller
  138. Note:    the reference count is decremented and the shared memory area is
  139.       deallocated if the new reference count is zero
  140. SeeAlso: AX=8400h,AX=8401h,INT 15/AX=DE19h
  141. --------D-2185-------------------------------
  142. INT 21 U - European MS-DOS 4.0 - ???
  143.     AH = 85h
  144.     ???
  145. Return: ???
  146. --------D-2186-------------------------------
  147. INT 21 - European MS-DOS 4.0 - "SETFILETABLE" - INSTALL NEW FILE HANDLE TABLE
  148.     AH = 86h
  149.     BX = total number of file handles in new table
  150. Return: CF clear if successful
  151.     CF set on error
  152.         AX = error code (06h,08h) (see AH=59h)
  153. Desc:    adjust the size of the per-process open file table, thus raising or
  154.       lowering the limit on the number of files the caller can open
  155.       simultaneously
  156. Notes:    any currently-open files are copied to the new table
  157.     if the table is increased beyond the default 20 handles, only the
  158.       first 20 will be inherited by child processes
  159.     error 06h is returned if the requested number of handles exceeds
  160.       system limits or would require closing currently-open files
  161. SeeAlso: AH=26h,AH=67h
  162. --------D-2187-------------------------------
  163. INT 21 - European MS-DOS 4.0 - "GETPID" - GET PROCESS IDENTIFIER
  164.     AH = 87h
  165. Return: AX = PID
  166.     BX = parent process's PID
  167.     CX = Command Subgroup ID (CSID)
  168. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  169.       by several other European OEMs; its release falls between mainstream
  170.       versions 3.2 and 3.3
  171. Desc:    determine an identifier by which to access the calling process
  172. Notes:    called by MS C v5.1 getpid() function
  173.     this function apparently must return AX=0001h for INT 21/AH=80h to
  174.       succeed
  175.     one possible check for European MS-DOS 4.0 is to issue this call with
  176.       AL=00h and check whether AL is nonzero on return
  177. SeeAlso: AH=30h,AH=62h,AH=80h
  178. Index:    installation check;European MS-DOS 4.0
  179. --------D-2188-------------------------------
  180. INT 21 U - European MS-DOS 4.0 - ???
  181.     AH = 88h
  182.     ???
  183. Return: ???
  184. SeeAlso: AH=87h
  185. --------D-2189-------------------------------
  186. INT 21 - European MS-DOS 4.0 - SLEEP
  187.     AH = 89h
  188.     CX = time in milliseconds or 0000h to give up time slice
  189. Return: CF clear if successful
  190.         CX = 0000h
  191.     CF set on error
  192.         AX = error code (interrupted system call)
  193.         CX = sleep time remaining
  194. Desc:    suspend the calling process for the specified duration
  195. Notes:    the sleep interval is rounded up to the next higher increment of the
  196.       scheduler clock, and may be extended further if other processes are
  197.       running
  198.     this call may be interrupted by signals (see AH=8Dh)
  199.     reportedly called by Microsoft C 4.0 startup code
  200.     background processes have higher priority than the foreground process,
  201.       and should thus periodically yield the CPU
  202. SeeAlso: AH=81h,INT 15/AX=1000h,INT 2F/AX=1680h,INT 7A/BX=000Ah
  203. --------v-2189-------------------------------
  204. INT 21 - VIRUS - "Vriest" - INSTALLATION CHECK
  205.     AH = 89h
  206. Return: AX = 0123h if resident
  207. SeeAlso: AH=84h"VIRUS",AH=90h"VIRUS"
  208. --------D-218A-------------------------------
  209. INT 21 - European MS-DOS 4.0 - "CWAIT" - WAIT FOR CHILD TO TERMINATE
  210.     AH = 8Ah
  211.     BL = range (00h command subtree, 01h any child)
  212.     BH = suspend flag
  213.         00h suspend if children exist but none are dead
  214.         01h return if no dead children
  215.     CX = Process ID of head of command subtree
  216. Return: CF clear if successful
  217.         AH = termination type
  218.         00h normal termination
  219.         01h aborted by Control-C
  220.         02h aborted by I/O error
  221.         03h terminate and stay resident
  222.         04h aborted by signal
  223.         05h aborted by program error
  224.         AL = return code from child or aborting signal
  225.         BX = PID of child (0000h if no dead children)
  226.     CF set on error
  227.         AX = error code (no child,interrupted system call)
  228. Desc:    get return code from an asynchronously-executed child program,
  229.       optionally waiting if no return code is available
  230. SeeAlso: AH=4Bh,AH=4Dh,AH=80h,AH=8Dh
  231. --------D-218B-------------------------------
  232. INT 21 U - European MS-DOS 4.0 - ???
  233.     AH = 8Bh
  234.     ???
  235. Return: ???
  236. SeeAlso: AH=87h
  237. --------D-218C-------------------------------
  238. INT 21 - European MS-DOS 4.0 - SET SIGNAL HANDLER
  239.     AH = 8Ch
  240.     AL = signal number (see below)
  241.     BL = action (see below)
  242.     DS:DX -> signal handler
  243. Return: CF clear if successful
  244.         AL = previous action
  245.         ES:BX -> previous signal handler
  246.     CF set on error
  247.         AX = error code (01h,invalid SigNumber or Action) (see AH=59h)
  248. Desc:    set the routine which will be invoked on a number of exceptional
  249.       conditions
  250. Note:    all signals will be sent to the most recently installed handler
  251. SeeAlso: AH=8Dh
  252.  
  253. Values for signal number:
  254.  01h    SIGINTR        Control-C or user defined interrupt key
  255.  08h    SIGTERM        program termination
  256.  09h    SIGPIPE        broken pipe
  257.  0Dh    SIGUSER1    reserved for user definition
  258.  0Eh    SIGUSER2    reserved for user definition
  259.  
  260. Values for signal action:
  261.  00h    SIG_DFL        terminate process on receipt
  262.  01h    SIG_IGN        ignore signal
  263.  02h    SIG_GET        signal is accepted
  264.  03h    SIG_ERR        sender gets error
  265.  04h    SIG_ACK        acknowledge received signal and clear it, but don't
  266.             change current setting
  267.  
  268. Signal handler is called with:
  269.     AL = signal number
  270.     AH = signal argument
  271. Return: RETF, CF set: terminate process
  272.     RETF, CF clear, ZF set: abort any interrupted system call with an error
  273.     RETF, CF clear, ZF clear: restart any interrupted system call
  274.     IRET: restart any interrupted system call
  275. Note:    the signal handler may also perform a nonlocal GOTO by resetting the
  276.       stack pointer and jumping; before doing so, it should dismiss the
  277.       signal by calling this function with BL=04h
  278. --------D-218D-------------------------------
  279. INT 21 - European MS-DOS 4.0 - SEND SIGNAL
  280.     AH = 8Dh
  281.     AL = signal number (see AH=8Ch)
  282.     BH = signal argument
  283.     BL = action
  284.         00h send to entire command subtree
  285.         01h send only to specified process
  286.     DX = Process ID
  287. Return: CF clear if successful
  288.     CF set on error
  289.         AX = error code (01h,06h)(see AH=59h)
  290. Desc:    invoke the exceptional-condition handler for the specified process
  291. Note:    error 06h may be returned if one or more of the affected processes
  292.       have an error handler for the signal
  293. SeeAlso: AH=8Ch
  294. --------D-218E00BH00-------------------------
  295. INT 21 - European MS-DOS 4.0 - "SETPRI" - GET/SET PROCESS PRIORITY
  296.     AX = 8E00h
  297.     BH = 00h
  298.     BL = action
  299.         00h set priority for command subtree
  300.         01h set priority for specified process only
  301.     CX = Process ID
  302.     DH = 00h
  303.     DL = change in priority (00h to get priority)
  304. Return: CF clear if successful
  305.         DL = process priority
  306.         DH destroyed
  307.     CF set on error
  308.         AX = error code (01h,no such process)(see AH=59h)
  309. Desc:    specify or determine the execution priority of the specified process
  310.       or the process and all of its children
  311. SeeAlso: AH=81h
  312. --------D-218F-------------------------------
  313. INT 21 U - European MS-DOS 4.0 - ???
  314.     AH = 8Fh
  315.     ???
  316. Return: ???
  317. SeeAlso: AH=87h
  318. --------D-2190-------------------------------
  319. INT 21 U - European MS-DOS 4.0 - ???
  320.     AH = 90h
  321.     ???
  322. Return: ???
  323. SeeAlso: AH=87h
  324. --------v-2190-------------------------------
  325. INT 21 - VIRUS - "Carioca" - INSTALLATION CHECK
  326.     AH = 90h
  327. Return: AH = 01h if resident
  328. SeeAlso: AH=89h"VIRUS",AX=9753h"VIRUS"
  329. --------D-2191-------------------------------
  330. INT 21 U - European MS-DOS 4.0 - ???
  331.     AH = 91h
  332.     ???
  333. Return: ???
  334. SeeAlso: AH=87h
  335. --------D-2192-------------------------------
  336. INT 21 U - European MS-DOS 4.0 - ???
  337.     AH = 92h
  338.     ???
  339. Return: ???
  340. SeeAlso: AH=87h
  341. --------D-2193-------------------------------
  342. INT 21 - European MS-DOS 4.0 - "PIPE" - CREATE A NEW PIPE
  343.     AH = 93h
  344.     CX = size in bytes
  345. Return: CF clear if successful
  346.         AX = read handle
  347.         BX = write handle
  348.     CF set on error
  349.         AX = error code (08h) (see AH=59h)
  350. Desc:    create a communications channel which may be used for interprocess
  351.       data and command exchanges
  352. SeeAlso: AH=3Ch,AH=3Fh,AH=40h,AH=84h
  353. --------D-2194-------------------------------
  354. INT 21 U - European MS-DOS 4.0 - ???
  355.     AH = 94h
  356.     ???
  357. Return: ???
  358. SeeAlso: AH=87h
  359. --------D-2195-------------------------------
  360. INT 21 - European MS-DOS 4.0 - HARD ERROR PROCESSING
  361.     AH = 95h
  362.     AL = new state
  363.        00h enabled
  364.        01h disabled, automatically fail hard errors
  365. Return: AX = previous setting
  366. Desc:    specify whether hard (critical) errors should automatically fail the
  367.       system call or invoke an INT 24
  368. SeeAlso: INT 24
  369. --------D-2196-------------------------------
  370. INT 21 U - European MS-DOS 4.0 - ???
  371.     AH = 96h
  372.     ???
  373. Return: ???
  374. --------D-2197-------------------------------
  375. INT 21 U - European MS-DOS 4.0 - ???
  376.     AH = 97h
  377.     ???
  378. Return: ???
  379. --------v-219753-----------------------------
  380. INT 21 - VIRUS - "Nina" - INSTALLATION CHECK
  381.     AX = 9753h
  382. Return: never (executes original program) if virus resident
  383. SeeAlso: AH=90h"VIRUS",AX=A1D5h"VIRUS"
  384. --------D-2198-------------------------------
  385. INT 21 U - European MS-DOS 4.0 - ???
  386.     AH = 98h
  387.     ???
  388. Return: ???
  389. --------D-2199-------------------------------
  390. INT 21 u - European MS-DOS 4.0 - "PBLOCK" - BLOCK A PROCESS
  391.     AH = 99h
  392.     DS:BX -> memory location to block on
  393.     CX = timeout in milliseconds
  394.     DH = nonzero if interruptible
  395. Return: CF clear if awakened by event
  396.         AX = 0000h
  397.     CF set if unusual wakeup
  398.         ZF set if timeout, clear if interrupted by signal
  399.         AX = nonzero
  400. Desc:    suspend calling process until another process sends a "restart" signal
  401.       or a timeout occurs
  402. SeeAlso: AH=9Ah,INT 2F/AX=0802h
  403. --------D-219A-------------------------------
  404. INT 21 u - European MS-DOS 4.0 - "PRUN" - UNBLOCK A PROCESS
  405.     AH = 9Ah
  406.     DS:BX -> memory location processes may have blocked on
  407. Return: AX = number of processes awakened
  408.     ZF set if no processes awakened
  409. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  410.       by several other European OEMs; its release falls between mainstream
  411.       versions 3.2 and 3.3
  412. Desc:    restart all processes waiting for the specified "restart" signal
  413. SeeAlso: AH=99h,INT 2F/AX=0802h
  414. --------I-21A0-------------------------------
  415. INT 21 - Attachmate Extra - GET 3270 DISPLAY STATE
  416.     AH = A0h
  417. Return: AL = display status
  418.         bit     7  : 0=windowed, 1=enlarged
  419.         bits 6-3: current screen profile number 0-9
  420.         bits 2-0: active window number
  421.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  422.     BX = host window status (see below)
  423. Program: Attachmate Extra is a 3270 emulator by Attachmate Corporation
  424. SeeAlso: AH=A1h
  425.  
  426. Bitfields for host window status:
  427.  bit 15 reserved
  428.  bit 14 0=host E window installed, 1=not
  429.  bit 13 0=host E terminal on, 1=off
  430.  bit 12 0=host E window displayed, 1=not
  431.  bit 11 reserved
  432.  bit 10 0=host D window installed, 1=not
  433.  bit 9    0=host D terminal on, 1=off
  434.  bit 8    0=host D window displayed, 1=not
  435.  bit 7    reserved
  436.  bit 6    0=host C window installed, 1=not
  437.  bit 5    0=host C terminal on, 1=off
  438.  bit 4    0=host C window displayed, 1=not
  439.  bit 3    reserved
  440.  bit 2    0=host B window installed, 1=not
  441.  bit 1    0=host B terminal on, 1=off
  442.  bit 0    0=host B window displayed, 1=not
  443. --------I-21A1-------------------------------
  444. INT 21 - Attachmate Extra - SET 3270 DISPLAY STATE
  445.     AH = A1h
  446.     AL = set status byte
  447.         bit     7  : 0=windowed, 1=enlarged
  448.         bits 6-3: current screen profile number 0-9
  449.         bits 2-0: active window number
  450.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  451. SeeAlso: AH=A0h,AH=A2h
  452. --------v-21A1D5-----------------------------
  453. INT 21 - VIRUS - "789"/"Filehider" - INSTALLATION CHECK
  454.     AX = A1D5h
  455. Return: AX = 900Dh if resident
  456. SeeAlso: AX=9753h,AX=A55Ah
  457. --------I-21A2-------------------------------
  458. INT 21 - Attachmate Extra - SET HOST WINDOW STATE
  459.     AH = A2h
  460.     AL = set status byte
  461.         bit     7  : 0=power off, 1=power on
  462.         bit     6  : 0=not installed, 1=installed
  463.         bits 5-3: reserved
  464.         bits 2-0: window number 1-4=host B-E
  465. SeeAlso: AH=A1h
  466. --------I-21A3-------------------------------
  467. INT 21 - Attachmate Extra - SEND KEYSTROKES TO HOST WINDOW
  468.     AH = A3h
  469.     AL = window number (1-4=host B-E)
  470.     CX = 0001h
  471.     DS:BX -> keystroke buffer
  472.     DL = zero if keystroke buffer contains host function code,
  473.          non-zero if keystroke buffer contains ASCII character
  474. Return: CX = zero if character sent, non-zero if not
  475.     BX incremented if CX=0
  476.  
  477. Values for host function code:
  478.     00h=reserved    10h=PF16    20h=Clear    30h=SysRq
  479.     01h=PF1        11h=PF17    21h=Print    31h=ErInp
  480.     02h=PF2        12h=PF18    22h=Left    32h=ErEof
  481.     03h=PF3        13h=PF19    23h=Right    33h=Ident
  482.     04h=PF4        14h=PF20    24h=Up        34h=Test
  483.     05h=PF5        15h=PF21    25h=Down    35h=Reset
  484.     06h=PF6        16h=PF22    26h=Home    36h=DevCncl
  485.     07h=PF7        17h=PF23    27h=Fast Left    37h=Dup
  486.     08h=PF8        18h=PF24    28h=Fast Right    38h=FldMark
  487.     09h=PF9        19h=Alt on    29h=Bksp    39h=Enter
  488.     0Ah=PF10    1Ah=Alt off    2Ah=Insert    3Ah=CrSel
  489.     0Bh=PF11    1Bh=Shift on    2Bh=Delete
  490.     0Ch=PF12    1Ch=Shift off    2Ch=Backtab
  491.     0Dh=PF13    1Dh=PA1        2Dh=Tab
  492.     0Eh=PF14    1Eh=PA2        2Eh=Newline
  493.     0Fh=PF15    1Fh=PA3        2Fh=Attn
  494. --------I-21A4-------------------------------
  495. INT 21 - Attachmate Extra - GET HOST WINDOW BUFFER ADDRESS
  496.     AH = A4h
  497.     AL = window number (1-4=host B-E)
  498. Return: DS:BX -> 3270 display buffer
  499. SeeAlso: AH=A5h,AH=B8h
  500. --------I-21A5-------------------------------
  501. INT 21 - Attachmate Extra - GET HOST WINDOW CURSOR POSITION
  502.     AH = A5h
  503.     AL = window number (1-4=host B-E)
  504. Return: BX = cursor position (80 * row + column, where 0:0 is upper left)
  505. Note:    if the host window is configured with the Extended Attribute (EAB)
  506.       feature, multiply the cursor position by 2 to obtain the byte offset
  507.       into the display buffer
  508. SeeAlso: AH=A4h
  509. --------v-21A55A-----------------------------
  510. INT 21 - VIRUS - "Eddie-2" - INSTALLATION CHECK
  511.     AX = A55Ah
  512. Return: AX = 5AA5h if resident
  513. SeeAlso: AX=A1D5h,AX=AA00h
  514. --------v-21AA00-----------------------------
  515. INT 21 - VIRUS - "Blinker" - INSTALLATION CHECK
  516.     AX = AA00h
  517. Return: AX = 00AAh if resident
  518. SeeAlso: AX=A55Ah,AX=AA03h
  519. --------v-21AA03-----------------------------
  520. INT 21 - VIRUS - "Backtime" - INSTALLATION CHECK
  521.     AX = AA03h
  522. Return: AX = 03AAh if resident
  523. SeeAlso: AX=AA00h,AH=ABh
  524. --------v-21AB-------------------------------
  525. INT 21 - VIRUS - "600" or "Voronezh"-family - INSTALLATION CHECK
  526.     AH = ABh
  527. Return: AX = 5555h if resident
  528. SeeAlso: AX=AA03h,AX=BBBBh"VIRUS"
  529. --------I-21AF-------------------------------
  530. INT 21 - Attachmate Extra - GET TRANSLATE TABLE ADDRESS
  531.     AH = AFh
  532. Return: DS:BX -> translate tables (see below)
  533.  
  534. Format of translate tables:
  535. Offset    Size    Description
  536.  00h 256 BYTEs    ASCII to 3270 buffer code translate table
  537. 100h 256 BYTEs    3270 buffer code to ASCII translate table
  538. 200h 256 BYTEs    3270 buffer code to EBCDIC translate table
  539. 300h 256 BYTEs    EBCDIC to 3270 buffer code translate table
  540. --------N-21B4-------------------------------
  541. INT 21 U - Novell Netware - "AttachHandle"
  542.     AH = B4h
  543.     DS:SI -> input buffer (see below)
  544. Return: AX = handle or return code
  545. Note:    this is an interface provided by NetWare to give DOS file access to
  546.       NetWare files on non-DOS systems such as Macintosh, OS/2, and Unix
  547.  
  548. Format of input buffer:
  549. Offset    Size    Description
  550.  00h    BYTE    "WorkFileServer"
  551.  01h    BYTE    access code
  552.  02h    DWORD    "OpenHandle"
  553.  06h    WORD    "OpenHandleCount"
  554.  08h    DWORD    "OpenFileSize"
  555. --------N-21B500-----------------------------
  556. INT 21 U - Novell NetWare - VNETWARE.386 API - GET INSTANCE DATA
  557.     AX = B500h
  558. Return: ES:BX -> data
  559.     CX = length
  560. SeeAlso: AX=B501h,AX=B502h
  561. --------N-21B501-----------------------------
  562. INT 21 U - Novell NetWare - VNETWARE.386 API - END VIRTUAL MACHINE
  563.     AX = B501h
  564. SeeAlso: AX=B500h,AX=B502h
  565. --------N-21B502-----------------------------
  566. INT 21 U - Novell NetWare - VNETWARE.386 API - START VIRTUAL MACHINE
  567.     AX = B502h
  568. SeeAlso: AX=B500h,AX=B501h
  569. --------N-21B5-------------------------------
  570. INT 21 - Novell NetWare shell 3.01 - TASK MODE CONTROL
  571.     AH = B5h
  572.     AL = subfunction
  573.         03h get task mode
  574.         Return: AH = 00h
  575.             AL = current task mode byte
  576.         04h get task mode pointer
  577.         Return: ES:BX -> task mode byte
  578. Notes:    the task mode byte specifies how task cleanup should be performed, but
  579.       is declared to be version-dependent
  580.     allows a program to disable the automatic cleanup for programs managing
  581.       task swapping, etc.
  582.  
  583. Values for task mode byte in version 3.01:
  584.  00h-03h reserved
  585.  04h     no task cleanup
  586. --------N-21B505-----------------------------
  587. INT 21 U - Novell NetWare - VNETWARE.386 API - SET VIRTUAL MACHINE ID
  588.     AX = B505h
  589.     ???
  590. Return: ???
  591. SeeAlso: AX=B502h,AX=B506h
  592. --------N-21B506-----------------------------
  593. INT 21 U - Novell NetWare - VNETWARE.386 API - GET VIRTUAL MACH SUPPORT LEVEL
  594.     AX = B506h
  595. Return: AX = ??? (0002h)
  596. SeeAlso: AX=B505h
  597. --------N-21B6-------------------------------
  598. INT 21 - Novell NetWare - FILE SERVICES - EXTENDED FILE ATTRIBUTES
  599.     AH = B6h
  600.     AL = subfunction
  601.         00h get extended file attributes
  602.         01h set extended file attributes
  603.         CL = extended file attributes (see below)
  604.     DS:DX -> ASCIZ pathname (max 255 bytes)
  605. Return: CF set on error
  606.         AL = error code
  607.         8Ch caller lacks privileges
  608.         FEh not permitted to search directory
  609.         FFh file not found
  610.     CF clear if successful
  611.         AL = 00h (success)
  612.         CL = current extended file attributes (see below)
  613. Note:    this function is supported by Advanced NetWare 2.1+
  614. SeeAlso: AX=4300h,AH=E3h/SF=0Fh
  615.  
  616. Bitfields for extended file attributes:
  617.  bits 2-0  search mode (executables only)
  618.     000 none (use shell's default search)
  619.     001 search on all opens without path
  620.     010 do not search
  621.     011 search on read-only opens without path
  622.     100 reserved
  623.     101 search on all opens
  624.     110 reserved
  625.     111 search on all read-only opens
  626.  bit 3    reserved
  627.  bit 4    transactions on file tracked
  628.  bit 5    file's FAT indexed
  629.  bit 6    read audit (to be implemented)
  630.  bit 7    write audit (to be implemented)
  631. --------N-21B7-------------------------------
  632. INT 21 U - Novell NetWare - "HoldFileModeSet" (obsolete)
  633.     AH = B7h
  634.     AL = new value for HoldFileFlag
  635. Return: AL = previous value of HoldFileFlag
  636. Note:    this function provided backward compatibility with a bug in early
  637.       DOS versions and CP/M, but is no longer used or supported
  638. --------I-21B8-------------------------------
  639. INT 21 - Attachmate Extra - DISABLE HOST BUFFER UPDATES
  640.     AH = B8h
  641.     AL = window number (1-4=host B-E)
  642.     DL = 01h
  643. Notes:    only valid in CUT mode
  644.     next AID keystroke (eg Enter) enables host buffer updates
  645. SeeAlso: AH=A4h
  646. --------N-21B800-----------------------------
  647. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT CAPTURE FLAGS
  648.     AX = B800h
  649.     CX = size of reply buffer (01h-3Fh)
  650.     ES:BX -> reply buffer for capture flags table (see below)
  651. Return: AL = status
  652.         00h successful
  653. Note:    this function is supported by Advanced NetWare 2.0+
  654. SeeAlso: AX=B801h,AX=B802h,AH=DFh/DL=00h,AH=DFh/DL=04h
  655.  
  656. Format of capture flags table:
  657. Offset    Size    Description
  658.  00h    BYTE    status (used internally, should be set to 00h)
  659.  01h    BYTE    print flags
  660.         bit 2: print capture file if interrupted by loss of connection
  661.         bit 3: no automatic form feed after print job
  662.         bit 6: printing control sequences interpreted by print service
  663.         bit 7: print banner page before capture file
  664.  02h    BYTE    tab size (01h-12h, default 08h)
  665.  03h    BYTE    printer number on server (00h-04h, default 00h)
  666.  04h    BYTE    number of copies to print (00h-FFh, default 01h)
  667.  05h    BYTE    form type required in printer (default 00h)
  668.  06h    BYTE    reserved
  669.  07h 13 BYTEs    text to be placed on banner page
  670.  14h    BYTE    reserved
  671.  15h    BYTE    default local printer (00h = LPT1)
  672.  16h    WORD    (big-endian) timeout in clock ticks for flushing capture file
  673.         on inactivity, or 0000h to disable timeout
  674.  18h    BYTE    flush capture file on LPT close if nonzero
  675.  19h    WORD    (big-endian) maximum lines per page
  676.  1Bh    WORD    (big-endian) maximum characters per line
  677.  1Dh 13 BYTEs    name of form required in printer
  678.  2Ah    BYTE    LPT capture flag
  679.         00h inactive, FFh LPT device is being captured
  680.  2Bh    BYTE    file capture flag
  681.         00h if no file specified, FFh if capturing to file
  682.  2Ch    BYTE    timing out (00h if no timeout in effect, FFh if timeout counter
  683.         running)
  684.  2Dh    DWORD    (big-endian) address of printer setup string
  685.  31h    DWORD    (big-endian) address of printer reset string
  686.  35h    BYTE    target connection ID
  687.  36h    BYTE    capture in progress if FFh
  688.  37h    BYTE    job queued for printing if FFh
  689.  38h    BYTE    print job valid if FFh
  690.  39h    DWORD    bindery object ID of print queue if previous byte FFh
  691.  3Dh    WORD    (big-endian) print job number (1-999)
  692. --------N-21B801-----------------------------
  693. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT CAPTURE FLAGS
  694.     AX = B801h
  695.     CX = size of buffer (01h-3Fh)
  696.     ES:BX -> buffer containing capture flags table (see below)
  697. Return: AL = status
  698.         00h successful
  699. Note:    this function is supported by Advanced NetWare 2.0+
  700. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  701. --------N-21B802-----------------------------
  702. INT 21 - Novell NetWare - PRINT SERVICES - GET SPECIFIC CAPTURE FLAGS
  703.     AX = B802h
  704.     CX = size of reply buffer (01h-3Fh)
  705.     DH = LPT port (00h-02h)
  706.     ES:BX -> reply buffer for capture flags table (see AX=B800h)
  707. Return: AL = status
  708.         00h successful
  709. Note:    this function is supported by Advanced NetWare 2.1+
  710. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  711. --------N-21B803-----------------------------
  712. INT 21 - Novell NetWare - PRINT SERVICES - SET SPECIFIC CAPTURE FLAGS
  713.     AX = B803h
  714.     CX = size of buffer (01h-3Fh)
  715.     DH = LPT port (00h-02h)
  716.     ES:BX -> buffer containing capture flags table (see below)
  717. Return: AL = status
  718.         00h successful
  719. Note:    this function is supported by Advanced NetWare 2.1+
  720. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  721. --------N-21B804-----------------------------
  722. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT LOCAL PRINTER
  723.     AX = B804h
  724. Return: DH = default LPT port (00h-02h)
  725. Note:    this function is supported by Advanced NetWare 2.1+
  726. SeeAlso: AX=B800h,AX=B805h,AH=DFh/DL=00h
  727. --------N-21B805-----------------------------
  728. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT LOCAL PRINTER
  729.     AX = B805h
  730.     DH = new default LPT port (00h-02h)
  731. Return: AL = status
  732.         00h successful
  733. Note:    this function is supported by Advanced NetWare 2.1+
  734. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h
  735. --------N-21B806-----------------------------
  736. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT QUEUE
  737.     AX = B806h
  738.     DH = LPT port (00h-02h)
  739.     BX:CX = print queue's object ID
  740. Return: AL = status
  741.         00h successful
  742.         FFh job already set
  743. Desc:    specify the print queue on which a print job is to be placed the next
  744.       time a capture is started on the given printer port
  745. Note:    this function is supported by Advanced NetWare 2.1+
  746. SeeAlso: AX=B801h,AX=B807h,AX=E009h
  747. --------N-21B807-----------------------------
  748. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT JOB
  749.     AX = B807h
  750.     DH = LPT port (00h-02h)
  751.     BX = job number (see AH=E3h/SF=68h)
  752.     SI:DI:CX = NetWare file handle (see AH=E3h/SF=68h)
  753. Return: AL = status
  754.         00h successful
  755.         FFh job already queued
  756. Desc:    specify the capture file and print job to be used for subsequent
  757.       output to the given printer port
  758. Note:    this function is supported by Advanced NetWare 2.1+
  759. SeeAlso: AX=B801h,AX=B806h,AX=E009h,AH=E3h/SF=68h
  760. --------N-21B808-----------------------------
  761. INT 21 - Novell NetWare - PRINT SERVICES - GET BANNER USER NAME
  762.     AX = B808h
  763.     ES:BX -> 12-byte buffer for user name
  764. Return: AL = status
  765.         00h successful
  766. Desc:    get the user name which is printed on the banner page
  767. Notes:    this function is supported by Advanced NetWare 2.1+
  768.     the default name is the login name of the user
  769. SeeAlso: AX=B809h
  770. --------N-21B809-----------------------------
  771. INT 21 - Novell NetWare - PRINT SERVICES - SET BANNER USER NAME
  772.     AX = B809h
  773.     ES:BX -> 12-byte buffer containing user name
  774. Return: AL = status
  775.         00h successful
  776. Desc:    specify the user name which is printed on the banner page
  777. Notes:    this function is supported by Advanced NetWare 2.1+
  778.     the default name is the login name of the user
  779. SeeAlso: AX=B808h
  780. --------N-21B9-------------------------------
  781. INT 21 U - Novell NetWare - "SpecialAttachableFunction"
  782.     AH = B9h
  783.     AL = FFh to hook this function
  784.         ES:BX -> function to invoke on AH=B9h when AL<>FFh
  785. Note:    this function is no longer used or supported by current versions of
  786.       NetWare
  787. --------N-21BA-------------------------------
  788. INT 21 U - Novell NetWare - "ReturnCommandComPointers"
  789.     AH = BAh
  790. Return: DX = environment segment
  791.     ES:DI -> COMMAND.COM drive
  792. Desc:    used to edit the COMSPEC and PATH variables in the master environment
  793.       when mapping network drives
  794. Note:    this function was documented in older Novell documents which are no
  795.       longer available
  796. --------N-21BB-------------------------------
  797. INT 21 - Novell NetWare - WORKSTATION - SET END OF JOB STATUS
  798.     AH = BBh
  799.     AL = new EOJ flag
  800.         00h disable EOJs
  801.         01h enable EOJs
  802. Return: AL = old EOJ flag
  803. Desc:    specify whether the network shell should automatically generate an
  804.       End of Job call when the root command processor regains control
  805. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  806.       Alloy NTNX
  807. SeeAlso: AH=19h,AH=D6h
  808. --------v-21BBBB-----------------------------
  809. INT 21 - VIRUS - "Hey You" - INSTALLATION CHECK
  810.     AX = BBBBh
  811. Return: AX = 6969h
  812. SeeAlso: AH=ABh"VIRUS",AH=BEh"VIRUS"
  813. --------N-21BC-------------------------------
  814. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG PHYSICAL RECORD
  815.     AH = BCh
  816.     AL = flags
  817.         bit 0: lock as well as log record
  818.         bit 1: non-exclusive lock
  819.     BX = file handle
  820.     CX:DX = starting offset in file
  821.     SI:DI = length of region to lock
  822.     BP = timeout in timer ticks (1/18 sec)
  823.         0000h = don't wait if already locked
  824. Return: AL = status
  825.         00h successful
  826.         96h no dynamic memory for file
  827.         FEh timed out
  828.         FFh failed
  829. Desc:    add the specified physical record to the log table, optionally locking
  830.       it
  831. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  832.       Alloy NTNX
  833. SeeAlso: AH=5Ch,AH=BDh,AH=BEh,AH=BFh,AH=C2h,AH=D0h
  834. --------N-21BD-------------------------------
  835. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECORD
  836.     AH = BDh
  837.     BX = file handle
  838.     CX:DX = starting offset in file
  839.     SI:DI = length of record
  840. Return: AL = status
  841.         00h successful
  842.         FFh record not locked
  843. Desc:    unlock the specified physical record but do not remove it from log
  844.       table
  845. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  846.       Alloy NTNX
  847. SeeAlso: AH=BCh,AH=BEh"NetWare",AH=C0h,AH=C3h,AH=D2h
  848. --------N-21BE-------------------------------
  849. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD
  850.     AH = BEh
  851.     BX = file handle
  852.     CX:DX = starting offset within file
  853.     SI:DI = record length in bytes
  854. Return: AL = status
  855.         00h successful
  856.         FFh specified record not locked
  857. Desc:    unlock the physical record and remove it from the log table
  858. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  859.       Alloy NTNX
  860. SeeAlso: AH=5Ch,AH=BCh,AH=BDh,AH=C1h,AH=C4h,AH=D4h
  861. --------v-21BE-------------------------------
  862. INT 21 - VIRUS - "Datalock" - INSTALLATION CHECK
  863.     AH = BEh
  864. Return: AX = 1234h if resident
  865. SeeAlso: AX=BBBBh,AX=BE00h
  866. --------v-21BE00-----------------------------
  867. INT 21 - VIRUS - "USSR-1049" - INSTALLATION CHECK
  868.     AX = BE00h
  869.     CF set
  870. Return: CF clear if resident
  871. SeeAlso: AH=BEh"VIRUS",AH=C0h"VIRUS"
  872. --------N-21BF-------------------------------
  873. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK RECORD (FCB)
  874.     AH = BFh
  875.     AL = flags
  876.         bit 0: lock as well as log record
  877.         bit 1: non-exclusive lock
  878.     DS:DX -> opened FCB (see AH=0Fh)
  879.     BX:CX = offset
  880.     BP = lock timeout in timer ticks (1/18 sec) if AL nonzero
  881.     SI:DI = length
  882. Return: AL = error code (see AH=BCh)
  883. Note:    this function was added in NetWare 4.6, but was removed some time prior
  884.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  885.       documentation
  886. SeeAlso: AH=BCh,AH=C0h"NetWare",AH=C2h"NetWare"
  887. --------N-21C0-------------------------------
  888. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE RECORD (FCB)
  889.     AH = C0h
  890.     DS:DX -> non-extended FCB (see AH=0Fh)
  891.     BX:CX = offset
  892. Return: AL = error code (see AH=BCh)
  893. Notes:    unlocks record but does not remove it from log table
  894.     this function was added in NetWare 4.6, but was removed some time prior
  895.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  896.       documentation
  897. SeeAlso: AH=BDh,AH=BFh,AH=C1h"NetWare",AH=C3h
  898. --------v-21C0-------------------------------
  899. INT 21 - VIRUS - "Slow"/"Zerotime", "Solano" - INSTALLATION CHECK
  900.     AH = C0h
  901. Return: AX = 0300h if "Slow"/"Zerotime" resident
  902.     AX = 1234h if "Solano" resident
  903. SeeAlso: AX=BE00h,AH=C1h"VIRUS",AX=C301h"VIRUS"
  904. --------N-21C1-------------------------------
  905. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR RECORD (FCB)
  906.     AH = C1h
  907.     DS:DX -> opened FCB (see AH=0Fh)
  908.     BX:CX = offset
  909. Return: AL = error code (see AH=BCh)
  910. Note:    unlocks record and removes it from log table
  911.     this function was added in NetWare 4.6, but was removed some time prior
  912.       to Advanced NetWare, and is no longer listed in current Novell
  913.       documentation
  914. SeeAlso: AH=BEh,AH=C0h"NetWare",AH=C4h
  915. --------v-21C1-------------------------------
  916. INT 21 - VIRUS - "Solano" - ???
  917.     AH = C1h
  918.     ???
  919. Return: ???
  920. SeeAlso: AH=C0h"VIRUS"
  921. --------N-21C2-------------------------------
  922. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK PHYSICAL RECORD SET
  923.     AH = C2h
  924.     AL = flags
  925.         bit 1: non-exclusive lock
  926.     BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  927. Return: AL = status
  928.         00h successful
  929.         FEh timed out
  930.         FFh failed
  931. Desc:    attempt to lock all physical records listed in the log table
  932. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  933.       Alloy NTNX
  934.     status FFh will be retuend if one or more physical records have been
  935.       exclusively locked by another process
  936. SeeAlso: AH=BFh,AH=C3h,AH=D1h
  937. --------v-21C2-------------------------------
  938. INT 21 - VIRUS - "Scott's Valley" - ???
  939.     AH = C2h
  940.     ???
  941. Return: ???
  942. SeeAlso: AH=C0h"VIRUS"
  943. --------N-21C3-------------------------------
  944. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECRD SET
  945.     AH = C3h
  946. Desc:    unlock all currently-locked physical records in the log table, but do
  947.       not remove them from the table
  948. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  949.       Alloy NTNX
  950. SeeAlso: AH=BDh,AH=C0h,AH=C2h"NetWare",AH=C4h,AH=D3h
  951. --------v-21C301DXF1F1-----------------------
  952. INT 21 - VIRUS - "905"/"Backfont" - INSTALLATION CHECK
  953.     AX = C301h
  954.     DX = F1F1h
  955. Return: DX = 0E0Eh if resident
  956. SeeAlso: AH=C0h"VIRUS",AX=C500h"VIRUS"
  957. --------N-21C4-------------------------------
  958. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD SET
  959.     AH = C4h
  960. Desc:    unlock all physical records in the log table and remove them from the
  961.       log table
  962. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  963.       Alloy NTNX
  964. SeeAlso: AH=BEh,AH=C1h,AH=D5h
  965. --------N-21C500-----------------------------
  966. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - OPEN SEMAPHORE
  967.     AX = C500h
  968.     DS:DX -> semaphore name (counted string, max 127 bytes)
  969.     CL = initial value for semaphore
  970. Return: AL = status
  971.         00h successful
  972.         BL = number of processes having semaphore open
  973.         CX:DX = semaphore handle
  974.         FEh invalid name length
  975.         FFh invalid semaphore value
  976. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  977.       Alloy NTNX
  978.     the semaphore's value is incremented by AX=C503h and decremented by
  979.       AX=C502h
  980. SeeAlso: AX=C501h,AX=C502h,AX=C503h,AX=C504h
  981. --------v-21C500-----------------------------
  982. INT 21 - VIRUS - "Sverdlov" - INSTALLATION CHECK
  983.     AX = C500h
  984. Return: AX = 6731h if resident
  985. SeeAlso: AX=C301h"VIRUS",AH=C6h"VIRUS"
  986. --------N-21C501-----------------------------
  987. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - EXAMINE SEMAPHORE
  988.     AX = C501h
  989.     CX:DX = semaphore handle
  990. Return: AL = status
  991.         00h successful
  992.         CX = semaphore value (-127 to 127)
  993.         DL = count of processes which have the semaphore open
  994.         FFh invalid handle
  995. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  996.       Alloy NTNX
  997. SeeAlso: AX=C500h"NetWare",AX=C502h,AX=C504h
  998. --------N-21C502-----------------------------
  999. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - WAIT ON SEMAPHORE
  1000.     AX = C502h
  1001.     CX:DX = semaphore handle
  1002.     BP = timeout limit in timer ticks (1/18 sec)
  1003.         0000h return immediately if semaphore already zero or negative
  1004. Return: AL = status
  1005.         00h successful
  1006.         FEh timeout
  1007.         FFh invalid handle
  1008. Desc:    decrement the semaphore's value, optionally waiting until its value
  1009.       becomes positive before decrementing
  1010. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1011.       Alloy NTNX
  1012. SeeAlso: AX=C500h"NetWare",AX=C501h,AX=C503h
  1013. --------N-21C503-----------------------------
  1014. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - SIGNAL SEMAPHORE
  1015.     AX = C503h
  1016.     CX:DX = semaphore handle
  1017. Return: AL = status
  1018.         00h successful
  1019.         01h semaphore value overflowed
  1020.         FFh invalid handle
  1021. Desc:    increment the semaphore's value and signal the first process (if any)
  1022.       in the queue waiting on the semaphore
  1023. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1024.       Alloy NTNX
  1025. SeeAlso: AX=C500h"NetWare",AX=C502h
  1026. --------N-21C504-----------------------------
  1027. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLOSE SEMAPHORE
  1028.     AX = C504h
  1029.     CX:DX = semaphore handle
  1030. Return: AL = status
  1031.         00h successful
  1032.         FFh invalid handle
  1033. Desc:    decrement the semaphore's open count, and delete the semaphore if the
  1034.       count reaches zero
  1035. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1036.       Alloy NTNX
  1037. SeeAlso: AX=C500h"NetWare",AX=C501h
  1038. --------N-21C6-------------------------------
  1039. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - GET OR SET LOCK MODE
  1040.     AH = C6h
  1041.     AL = subfunction
  1042.         00h set old "compatibility" mode (default)
  1043.         01h set new extended locks mode
  1044.         02h get lock mode
  1045. Return: AL = current lock mode
  1046. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1047.       Alloy NTNX
  1048.     the locking mode should be 01h for NetWare 4.61+ and Advanced
  1049.       NetWare 1.0+ locking calls, and 00h for all older calls
  1050. SeeAlso: AH=BCh,AH=C4h,AH=D0h
  1051. --------v-21C6-------------------------------
  1052. INT 21 - VIRUS - "Socha" - INSTALLATION CHECK
  1053.     AH = C6h
  1054. Return: AL = 55h if resident
  1055. SeeAlso: AX=C500h"VIRUS",AX=C603h
  1056. --------v-21C603-----------------------------
  1057. INT 21 - VIRUS - "Yankee" or "MLTI" - INSTALLATION CHECK
  1058.     AX = C603h
  1059.     CF set
  1060. Return: CF clear if resident
  1061. SeeAlso: AX=C500h"VIRUS",AX=C700h"VIRUS"
  1062. --------N-21C700-----------------------------
  1063. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - BEGIN TRANSACTION
  1064.     AX = C700h
  1065. Return: CF clear if successful
  1066.         AL = 00h
  1067.     CF set on error
  1068.         AL = error code
  1069.         96h out of memory
  1070.         FEh implicit transaction already active, converted to explicit
  1071.         FFh explicit transaction already active
  1072. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1073. SeeAlso: AX=C701h,AX=C702h,AX=C703h
  1074. --------v-21C700-----------------------------
  1075. INT 21 - VIRUS - "MH-757" - INSTALLATION CHECK
  1076.     AX = C700h
  1077. Return: AL = 07h if resident
  1078. SeeAlso: AX=C603h"VIRUS",AH=CBh"VIRUS"
  1079. --------N-21C701-----------------------------
  1080. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - END TRANSACTION
  1081.     AX = C701h
  1082. Return: AL = status
  1083.         00h successful
  1084.         CX:DX = transaction number
  1085.         FDh transaction tracking disabled
  1086.         FEh transaction ended records locked
  1087.         FFh no explicit transaction active
  1088.     CF clear except when AL=FFh
  1089. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1090. SeeAlso: AX=C700h"NetWare",AX=C703h
  1091. --------N-21C702-----------------------------
  1092. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - INSTALLATION CHECK
  1093.     AX = C702h
  1094. Return: AL = status
  1095.         00h not available
  1096.         01h available
  1097.         FDh available but disabled
  1098. Desc:    determine whether the default file server supports TTS
  1099. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1100. --------N-21C703-----------------------------
  1101. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - ABORT TRANSACTION
  1102.     AX = C703h
  1103. Return: CF clear if successful
  1104.         AL = 00h
  1105.     CF set on error
  1106.         AL = error code
  1107.         FDh transaction tracking disabled, no backout
  1108.         FEh transaction ended records locked
  1109.         FFh no explicit transaction active
  1110. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1111. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C704h
  1112. --------N-21C704-----------------------------
  1113. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - TRANSACTION STATUS
  1114.     AX = C704h
  1115.     CX:DX = transaction number (see AX=C701h)
  1116. Return: AL = status
  1117.         00h successful
  1118.         FFh not yet written to disk
  1119. Desc:    verify that a transaction has actually been written to disk
  1120. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1121.     transactions are written to disk in the order in which they are ended,
  1122.       but it may take as much as five seconds for the data to be written
  1123. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C703h
  1124. --------N-21C705-----------------------------
  1125. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET APPLICTN THRESHOLDS
  1126.     AX = C705h
  1127. Return: AL = status
  1128.         00h successful
  1129.     CL = maximum logical record locks (default 0)
  1130.     CH = maximum physical record locks (default 0)
  1131. Desc:    get the per-application limits on record locks allowed before an
  1132.       implicit transaction is begun
  1133. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1134.     if either limit is FFh, implicit transactions are disabled for the
  1135.       corresponding lock type
  1136. SeeAlso: AX=C706h,AX=C707h
  1137. --------N-21C706-----------------------------
  1138. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET APPLICTN THRESHOLDS
  1139.     AX = C706h
  1140.     CL = maximum logical record locks (default 0)
  1141.     CH = maximum physical record locks (default 0)
  1142. Return: AL = status
  1143.         00h successful
  1144. Desc:    specify the per-application limits on record locks allowed before an
  1145.       implicit transaction is begun
  1146. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1147.     if either limit is set to FFh, implicit transactions are disabled for
  1148.       the corresponding lock type
  1149. SeeAlso: AX=C705h,AX=C708h
  1150. --------N-21C707-----------------------------
  1151. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET WORKSTN THRESHOLDS
  1152.     AX = C707h
  1153. Return: AL = status
  1154.         00h successful
  1155.     CL = maximum logical record locks (default 0)
  1156.     CH = maximum physical record locks (default 0)
  1157. Desc:    get the per-workstation limits on record locks allowed before an
  1158.       implicit transaction is begun
  1159. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1160.     if either limit is FFh, implicit transactions are disabled for the
  1161.       corresponding lock type
  1162. SeeAlso: AX=C705h,AX=C708h
  1163. --------N-21C708-----------------------------
  1164. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET WORKSTN THRESHOLDS
  1165.     AX = C708h
  1166.     CL = maximum logical record locks (default 0)
  1167.     CH = maximum physical record locks (default 0)
  1168. Return: AL = status
  1169.         00h successful
  1170. Desc:    specify the per-workstation limits on record locks allowed before an
  1171.       implicit transaction is begun
  1172. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1173.     if either limit is set to FFh, implicit transactions are disabled for
  1174.       the corresponding lock type
  1175. SeeAlso: AX=C706h,AX=C707h
  1176. --------N-21C8-------------------------------
  1177. INT 21 O - Novell NetWare - BEGIN LOGICAL FILE LOCKING
  1178.     AH = C8h
  1179.     if function C6h lock mode 00h:
  1180.         DL = mode
  1181.         00h no wait
  1182.         01h wait
  1183.     if function C6h lock mode 01h:
  1184.         BP = timeout in timer ticks (1/18 sec)
  1185. Return: AL = error code
  1186. Desc:    used to provide TTS support for applications which are not aware of
  1187.       Novell's Transaction Tracking System
  1188. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1189.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1190.       documentation
  1191. SeeAlso: AH=C9h
  1192. --------N-21C9-------------------------------
  1193. INT 21 O - Novell NetWare - END LOGICAL FILE LOCKING
  1194.     AH = C9h
  1195. Return: AL = error code
  1196. Desc:    used to provide TTS support for applications which are not aware of
  1197.       Novell's Transaction Tracking System
  1198. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1199.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1200.       documentation
  1201. SeeAlso: AH=C8h
  1202. --------N-21CA-------------------------------
  1203. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK PERSONAL FILE (FCB)
  1204.     AH = CAh
  1205.     DS:DX -> FCB (see AH=0Fh)
  1206.     if function C6h lock mode 01h:
  1207.         AL = log and lock flag
  1208.         00h log file only
  1209.         01h lock as well as log file
  1210.         BP = lock timeout in timer ticks (1/18 sec)
  1211. Return: AL = error code
  1212.         00h successful
  1213.         96h no dynamic memory for file
  1214.         FEh timeout
  1215.         FFh failed
  1216. Desc:    provides file locking support for FCBs
  1217. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1218.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1219.       documentation
  1220. SeeAlso: AH=CBh
  1221. --------v-21CA15-----------------------------
  1222. INT 21 - VIRUS - "Piter" - ???
  1223.     AX = CA15h
  1224.     ???
  1225. Return: ???
  1226. SeeAlso: AH=CCh"VIRUS"
  1227. --------N-21CB-------------------------------
  1228. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK FILE SET
  1229.     AH = CBh
  1230.     if function C6h lock mode 00h:
  1231.         DL = mode
  1232.         00h no wait
  1233.         01h wait
  1234.     if function C6h lock mode 01h:
  1235.         BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1236. Return: AL = status
  1237.         00h successful
  1238.         FEh timed out
  1239.         FFh failed
  1240. Desc:    attempt to lock all files listed in the log table
  1241. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1242.       Alloy NTNX
  1243.     status FFh will be returned if one or more of the files have already
  1244.       been exclusively locked by another process
  1245. SeeAlso: AH=CAh,AH=CDh,AH=D1h,AH=EBh
  1246. --------v-21CB-------------------------------
  1247. INT 21 - VIRUS - "Milous" - INSTALLATION CHECK
  1248.     AH = CBh
  1249. Return: AL = 07h if resident
  1250. SeeAlso: AX=C700h"VIRUS",AX=CB02h
  1251. --------v-21CB02-----------------------------
  1252. INT 21 - VIRUS - "Witcode" - INSTALLATION CHECK
  1253.     AX = CB02h
  1254. Return: AX = 02CBh if resident
  1255. SeeAlso: AH=CBh"VIRUS",AH=CCh"VIRUS"
  1256. --------N-21CC-------------------------------
  1257. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE FILE (FCB)
  1258.     AH = CCh
  1259.     DS:DX -> FCB (see AH=0Fh)
  1260. Return: none
  1261. Desc:    unlocks file, but does not remove it from the log table or close it
  1262. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1263.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1264.       documentation
  1265. SeeAlso: AH=CAh,AH=CDh
  1266. --------v-21CC-------------------------------
  1267. INT 21 - VIRUS - "Westwood" - INSTALLATION CHECK
  1268.     AH = CCh
  1269. Return: AX = 0700h if resident
  1270. SeeAlso: AX=CB02h,AH=CDh"VIRUS",AX=D000h"VIRUS"
  1271. --------N-21CD-------------------------------
  1272. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE SET
  1273.     AH = CDh
  1274. Return: none
  1275. Desc:    unlock all files listed in the log table, but don't remove them from
  1276.       the table
  1277. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1278.       Alloy NTNX
  1279. SeeAlso: AH=CBh,AH=CCh,AH=CFh,AH=D3h
  1280. --------v-21CD-------------------------------
  1281. INT 21 - VIRUS - "Westwood" - ???
  1282.     AH = CDh
  1283.     ???
  1284. Return: ???
  1285. SeeAlso: AH=CCh"VIRUS"
  1286. --------N-21CE-------------------------------
  1287. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR FILE (FCB)
  1288.     AH = CEh
  1289.     DS:DX -> FCB (see AH=0Fh)
  1290. Return: AL = error code
  1291. Desc:    unlocks file and removes it from log table, then closes all opened and
  1292.       logged occurrences
  1293. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1294.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1295.       documentation
  1296. SeeAlso: AH=CAh,AH=CFh,AH=EDh"NetWare"
  1297. --------N-21CF-------------------------------
  1298. INT 21 - LANstep - ???
  1299.     AH = CFh
  1300.     ???
  1301. Return: ???
  1302. Program: LANstep is a redesign of the Waterloo Microsystems PORT network
  1303. --------N-21CF-------------------------------
  1304. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE SET
  1305.     AH = CFh
  1306. Return: AL = 00h
  1307. Desc:    unlock and remove all files from log table
  1308. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1309.       Alloy NTNX
  1310. SeeAlso: AH=CAh,AH=CEh,AH=EBh"NetWare"
  1311. --------N-21D0-------------------------------
  1312. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG LOGICAL RECORD
  1313.     AH = D0h
  1314.     DS:DX -> record string (counted string, max 99 data bytes)
  1315.     if function C6h lock mode 01h: (Novell, NTNX only)
  1316.         AL = flags
  1317.         bit 0: lock as well as log the record
  1318.         bit 1: non-exclusive lock
  1319.         BP = lock timeout in timer ticks (1/18 sec)
  1320. Return: AL = status
  1321.         00h successful
  1322.         96h no dynamic memory for file
  1323.         FEh timed out
  1324.         FFh unsuccessful
  1325. Desc:    add the specified logical record name to the log table, and optionally
  1326.       lock the record
  1327. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+,
  1328.       Banyan VINES, and Alloy NTNX
  1329.     locks on logical record names are advisory and may be ignored by other
  1330.       applications
  1331. SeeAlso: AH=BCh,AH=D1h,AH=D2h,AH=D4h,AH=EBh
  1332. --------v-21D000-----------------------------
  1333. INT 21 - VIRUS - "Fellowship" - INSTALLATION CHECK
  1334.     AX = D000h
  1335. Return: BX = 1234h if resident
  1336. SeeAlso: AH=CCh"VIRUS",AH=D5h"VIRUS",AX=D5AAh
  1337. --------N-21D1-------------------------------
  1338. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK LOGICAL RECORD SET
  1339.     AH = D1h
  1340.     AL = lock type (00h exclusive, 01h shareable)
  1341.     if function C6h lock mode 00h:
  1342.         DL = mode
  1343.         00h no wait
  1344.         01h wait
  1345.     if function C6h lock mode 01h: (Novell only)
  1346.        BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1347.         0000h no wait
  1348. Return: AL = status (see AH=CBh)
  1349. Desc:    attempt to lock all logical record names listed in the log table
  1350. Notes:    this function is supported by NetWare 4.6+, Advanced Netware 1.0+,
  1351.       Banyan VINES, and Alloy NTNX
  1352.     status FFh will be returned if one or more logical records have been
  1353.       exclusively locked by another process
  1354.     locks on logical record names are advisory and may be ignored by other
  1355.       applications
  1356. SeeAlso: AH=C2h,AH=CBh,AH=D0h,AH=D3h,AH=D5h
  1357. --------N-21D2-------------------------------
  1358. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD
  1359.     AH = D2h
  1360.     DS:DX -> semaphore identifier (counted string up to 99 chars long)
  1361. Return: AL = status
  1362.         00h successful
  1363.         FFh no such record
  1364. Desc:    unlock the logical record name but do not remove it from the log table
  1365. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1366.       Banyan VINES, and Alloy NTNX
  1367.     locks on logical record names are advisory and may be ignored by other
  1368.       applications
  1369. SeeAlso: AH=BDh,AH=D0h,AH=D3h,AH=D4h
  1370. --------N-21D3-------------------------------
  1371. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD SET
  1372.     AH = D3h
  1373. Desc:    unlock all currently-locked logical record names in the log table, but
  1374.       do not remove them from the table
  1375. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1376.       Banyan VINES, and Alloy NTNX
  1377.     locks on logical record names are advisory and may be ignored by other
  1378.       applications
  1379. SeeAlso: AH=C3h,AH=CDh,AH=D1h,AH=D2h,AH=D5h
  1380. --------N-21D4-------------------------------
  1381. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD
  1382.     AH = D4h
  1383.     DS:DX -> logical record name (counted string up to 99 chars long)
  1384. Return: AL = status
  1385.         00h successful
  1386.         FFh no such record name
  1387. Desc:    unlock and remove the logical record name from the log table
  1388. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1389.       Banyan VINES, and Alloy NTNX
  1390.     locks on logical record names are advisory and may be ignored by other
  1391.       applications
  1392. SeeAlso: AH=BEh,AH=D0h,AH=D2h,AH=D5h
  1393. --------N-21D5-------------------------------
  1394. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD SET
  1395.     AH = D5h
  1396. Return: AL = error code (see AH=D4h)
  1397. Desc:    unlock and remove all logical record name from the log table
  1398. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1399.       Banyan VINES, and Alloy NTNX
  1400.     locks on logical record names are advisory and may be ignored by other
  1401.       applications
  1402. SeeAlso: AH=D1h,AH=D3h,AH=D4h
  1403. --------v-21D5-------------------------------
  1404. INT 21 - VIRUS - "Carfield" - ???
  1405.     AH = D5h
  1406.     ???
  1407. Return: ???
  1408. SeeAlso: AX=D5AAh,AH=F3h"Carfield"
  1409. --------v-21D5AA-----------------------------
  1410. INT 21 - VIRUS - "Diamond-A", "Diamond-B" - INSTALLATION CHECK
  1411.     AX = D5AAh
  1412. Return: AX = 2A55h if "Diamond-A" resident
  1413.     AX = 2A03h if "Diamond-B"-family virus resident
  1414. SeeAlso: AX=D000h,AH=D5h"VIRUS",AX=D5AAh/BP=DEAAh
  1415. --------v-21D5AABPDEAA-----------------------
  1416. INT 21 - VIRUS - "Dir" - INSTALLATION CHECK
  1417.     AX = D5AAh
  1418.     BP = DEAAh
  1419. Return: SI = 4321h if resident
  1420. SeeAlso: AX=D5AAh,AX=DADAh"VIRUS"
  1421. --------N-21D6-------------------------------
  1422. INT 21 - Novell NetWare - WORKSTATION - END OF JOB
  1423.     AH = D6h
  1424.     BX = job flag (0000h current job, FFFFh all processes on workstation)
  1425. Return: AL = error code
  1426. Desc:    unlocks and clears all locked or logged files and records held by the
  1427.       process(es), closes all files, resets error and lock modes, and
  1428.       releases all network resources
  1429. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1430.       Alloy NTNX
  1431. SeeAlso: AH=BBh,AH=D7h
  1432. --------N-21D7-------------------------------
  1433. INT 21 - Novell NetWare - CONNECTION SERVICES - SYSTEM LOGOUT
  1434.     AH = D7h
  1435. Return: AL = error code
  1436. Desc:    this function closes the caller's open files, logs it out from all
  1437.       file servers, detaches the workstation from all non-default file
  1438.       servers, and maps a drive to the default server's SYS:LOGIN directory
  1439. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1440.       Alloy NTNX
  1441. SeeAlso: AH=D6h,AH=E3h/SF=14h,AH=F1h
  1442. --------N-21D8-------------------------------
  1443. INT 21 - Novell NetWare, Banyan VINES - ALLOCATE RESOURCE
  1444.     AH = D8h
  1445.     DL = resource number
  1446. Return: AL = status
  1447.         00h successful
  1448.         FFh unsucessful
  1449. Note:    this function is no longer used or supported by NetWare, and is not
  1450.       documented in Novell documents
  1451. SeeAlso: AH=D9h
  1452. --------N-21D9-------------------------------
  1453. INT 21 - Novell NetWare, Banyan VINES - DEALLOCATE RESOURCE
  1454.     AH = D9h
  1455.     DL = resource number
  1456. Return: AL = status (see AH=D8h)
  1457. Note:    this function is no longer used or supported by NetWare, and is not
  1458.       documented in Novell documents
  1459. SeeAlso: AH=D8h
  1460. --------N-21DA-------------------------------
  1461. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH NUMBER
  1462.     AH = DAh
  1463.     DL = volume number
  1464.     ES:DI -> reply buffer (see below)
  1465. Return: AL = 00h
  1466. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1467.     operator console rights are not required to make this call
  1468.     reported total blocks and total unused blocks include the Hot Fix
  1469.       Table; the NetWare shell's implementation of INT 21/AH=36h will
  1470.       report values larger than 268MB as 268MB.
  1471. SeeAlso: AH=36h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  1472.  
  1473. Format of reply buffer:
  1474. Offset    Size    Description
  1475.  00h    WORD    sectors/block
  1476.  02h    WORD    total blocks on volume
  1477.  04h    WORD    unused blocks
  1478.  06h    WORD    total directory entries
  1479.  08h    WORD    unused directory entries
  1480.  0Ah 16 BYTEs    volume name, null padded
  1481.  1Ah    WORD    removable flag, 0000h = not removable
  1482. Note:    all words are big-endian
  1483. --------v-21DADA-----------------------------
  1484. INT 21 - VIRUS - "Gotcha" - INSTALLATION CHECK
  1485.     AX = DADAh
  1486. Return: AH = A5h
  1487. SeeAlso: AX=D5AAh,AX=DAFEh"VIRUS"
  1488. --------v-21DAFE-----------------------------
  1489. INT 21 - VIRUS - "Plovdiv 1.3" - INSTALLATION CHECK
  1490.     AX = DAFEh
  1491. Return: AX = 1234h if resident
  1492. SeeAlso: AX=DADAh,AH=DDh"VIRUS",AH=DEh"VIRUS"
  1493. --------N-21DB-------------------------------
  1494. INT 21 - Novell NetWare - WORKSTATION - GET NUMBER OF LOCAL DRIVES
  1495.     AH = DBh
  1496. Return: AL = number of local disks as set by LASTDRIVE in CONFIG.SYS
  1497. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1498.       Alloy NTNX
  1499. SeeAlso: AH=0Eh
  1500. --------N-21DC-------------------------------
  1501. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION NUMBER
  1502.     AH = DCh
  1503. Return: AL = logical connection number
  1504.         00h if NetWare not loaded or this machine is a non-dedicated server
  1505.     CX = station number in ASCII (CL = first digit)
  1506. Notes:    this function is supported by NetWare 4.0+, Banyan VINES, and Alloy
  1507.       NTNX
  1508.     station number only unique for those PCs connected to same semaphore
  1509.       service
  1510. --------d-21DC-------------------------------
  1511. INT 21 - PCMag PCMANAGE/DCOMPRES - TURN ON/OFF
  1512.     AH = DCh
  1513.     DX = state
  1514.         0000h turn on
  1515.         0001h turn off
  1516. SeeAlso: AX=FEDCh
  1517. --------N-21DD-------------------------------
  1518. INT 21 - Novell NetWare - WORKSTATION - SET NetWare ERROR MODE
  1519.     AH = DDh
  1520.     DL = error mode
  1521.         00h invoke INT 24 on critical I/O errors (default)
  1522.         01h return NetWare extended error code in AL
  1523.         02h return error code in AL, mapped to standard DOS error codes
  1524. Return: AL = previous error mode
  1525. Note:    this function is supported by Advanced NetWare 2.0+
  1526. SeeAlso: INT 24
  1527. --------v-21DD-------------------------------
  1528. INT 21 - VIRUS - "Jerusalem"-family - RELOCATE VIRUS???
  1529.     AH = DDh
  1530.     CX = number of bytes to copy
  1531.     DS:SI -> source of copy
  1532.     ES:DI -> destination of copy
  1533. Return: does not return normally; return address is caller's CS:0100h with
  1534.       AX = ???
  1535. SeeAlso: AH=E0h"VIRUS",AH=EEh"VIRUS"
  1536. --------v-21DE-------------------------------
  1537. INT 21 - VIRUS - "Durban" - INSTALLATION CHECK
  1538.     AH = DEh
  1539. Return: AH = DFh if resident
  1540. SeeAlso: AX=DAFEh,AX=DEDEh"VIRUS"
  1541. --------v-21DE-------------------------------
  1542. INT 21 - VIRUS - "April 1st EXE" - ???
  1543.     AH = DEh
  1544.     ???
  1545. Return: ???
  1546. --------N-21DE-------------------------------
  1547. INT 21 - Novell NetWare - MESSAGE SERVICES - SET BROADCAST MODE
  1548.     AH = DEh
  1549.     DL = broadcast mode
  1550.         00h receive server and workstation broadcasts (default)
  1551.         01h receive server broadcasts, discard user messages
  1552.         02h store server broadcasts for retrieval
  1553.         03h store all broadcasts for retrieval
  1554. Return: AL = new broadcast mode
  1555. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1556. --------N-21DE--DL04-------------------------
  1557. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MODE
  1558.     AH = DEh
  1559.     DL = 04h
  1560. Return: AL = current broadcast mode
  1561.         00h receive server and workstation broadcasts (default)
  1562.         01h receive server broadcasts, discard user message
  1563.         02h store server broadcasts for retrieval
  1564.         03h store all broadcasts for retrieval
  1565. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1566. --------N-21DE-------------------------------
  1567. INT 21 - Novell NetWare - SHELL TIMER INTERRUPT CHECKS
  1568.     AH = DEh
  1569.     DL = function
  1570.         05h disable shell timer interrupt checks
  1571.         06h enable shell timer interrupt checks
  1572. Return: ???
  1573. Note:    this function was added in NetWare 4.0, but is not listed in current
  1574.       Novell documentation and is probably no longer supported
  1575. --------v-21DEDE-----------------------------
  1576. INT 21 - VIRUS - "Brothers" - INSTALLATION CHECK
  1577.     AX = DEDEh
  1578. Return: AH = 41h if resident
  1579. SeeAlso: AH=DEh"VIRUS",AH=E0h"VIRUS"
  1580. --------N-21DF--DL00-------------------------
  1581. INT 21 - Novell NetWare - PRINT SERVICES - START LPT CAPTURE
  1582.     AH = DFh
  1583.     DL = 00h
  1584. Return: AL = status
  1585.         00h successful
  1586. Desc:    this function redirects the default LPT to a capture file on the file
  1587.       server
  1588. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1589.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1590.     a print job is queued when the first character of output is captured
  1591. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=03h
  1592. SeeAlso: AH=DFh/DL=04h,AX=F003h
  1593. --------N-21DF--DL01-------------------------
  1594. INT 21 - Novell NetWare - PRINT SERVICES - END LPT CAPTURE
  1595.     AH = DFh
  1596.     DL = 01h
  1597. Return: AL = status
  1598.         00h successful
  1599. Desc:    stop redirecting the default LPT, close the capture file, and release
  1600.       the job in the print queue for printing
  1601. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1602.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1603.     after this call, the default LPT defaults to local printing
  1604. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=02h,AH=DFh/DL=03h,AH=DFh/DL=05h
  1605. --------N-21DF--DL02-------------------------
  1606. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL LPT CAPTURE
  1607.     AH = DFh
  1608.     DL = 02h
  1609. Return: AL = status
  1610.         00h successful
  1611. Desc:    this function ends the capture of the default LPT, removes the job from
  1612.       the print queue, and deletes the capture file unless it is a
  1613.       permanent capture file
  1614. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1615.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1616.     after this call, the default LPT defaults to local printing
  1617. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=06h
  1618. --------N-21DF--DL03-------------------------
  1619. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH LPT CAPTURE
  1620.     AH = DFh
  1621.     DL = 03h
  1622. Return: AL = status
  1623.         00h successful
  1624. Desc:    this function closes the current capture file for the default LPT
  1625.       and starts printing it if it is not a permanent capture file
  1626. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1627.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1628.     if more data is sent to the LPT port after this call, a new capture
  1629.       file will be opeend
  1630. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=07h
  1631. --------N-21DF--DL04-------------------------
  1632. INT 21 - Novell NetWare - PRINT SERVICES - START SPECIFIC LPT CAPTURE
  1633.     AH = DFh
  1634.     DL = 04h
  1635.     DH = LPT port (00h-02h)
  1636. Return: AL = status
  1637.         00h successful
  1638. Desc:    this function redirects the specified LPT to a capture file on the file
  1639.       server
  1640. Notes:    this function is supported by Advanced NetWare 2.1+
  1641.     a print job is queued when the first character of output is captured
  1642. SeeAlso: AX=B800h,AH=DFh/DL=00h,AH=DFh/DL=05h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1643. SeeAlso: AX=F003h
  1644. --------N-21DF--DL05-------------------------
  1645. INT 21 - Novell NetWare - PRINT SERVICES - END SPECIFIC LPT CAPTURE
  1646.     AH = DFh
  1647.     DL = 05h
  1648.     DH = LPT port (00h-02h)
  1649. Return: AL = status
  1650.         00h successful
  1651. Desc:    stop redirecting the specified LPT, close the capture file, and release
  1652.       the job in the print queue for printing
  1653. Notes:    this function is supported by Advanced NetWare 2.1+
  1654.     after this call, the specified LPT defaults to local printing
  1655. SeeAlso: AH=DFh/DL=01h,AH=DFh/DL=04h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1656. --------N-21DF--DL06-------------------------
  1657. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL SPECIFIC LPT CAPTURE
  1658.     AH = DFh
  1659.     DL = 06h
  1660.     DH = LPT port (00h-02h)
  1661. Return: AL = status
  1662.         00h successful
  1663. Desc:    this function ends the capture of the specified LPT, removes the job
  1664.       from the print queue, and deletes the capture file unless it is a
  1665.       permanent capture file
  1666. Notes:    this function is supported by Advanced NetWare 2.1+
  1667.     after this call, the specified LPT defaults to local printing
  1668. SeeAlso: AH=DFh/DL=02h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=07h
  1669. --------N-21DF--DL07-------------------------
  1670. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH SPECIFIC LPT CAPTURE
  1671.     AH = DFh
  1672.     DL = 07h
  1673.     DH = LPT port (00h-02h)
  1674. Return: AL = status
  1675.         00h successful
  1676. Desc:    this function closes the current capture file for the specified LPT
  1677.       and starts printing it if it is not a permanent capture file
  1678. Notes:    this function is supported by Advanced NetWare 2.1+
  1679.     if more data is sent to the LPT port after this call, a new capture
  1680.       file will be opeend
  1681. SeeAlso: AH=DFh/DL=03h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=06h
  1682. --------T-21DF00DX534C-----------------------
  1683. INT 21 U - Software Carousel - INSTALLATION CHECK
  1684.     AX = DF00h
  1685.     DX = 534Ch ("SL")
  1686.     DI = 534Ch ("SL")
  1687. Return: AX = 00FFh if installed
  1688.         ???
  1689. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1690. --------T-21DF01-----------------------------
  1691. INT 21 - Software Carousel - SWITCH TO ANOTHER TASK
  1692.     AX = DF01h
  1693.     BL = task number (00h = next task)
  1694. Return: AL = status
  1695.         00h Carousel not running
  1696.         01h successful
  1697.         FFh unsucessful
  1698.         AH = error code (01h,02h) (see below)
  1699.  
  1700. Values for error code:
  1701.  00h    invalid subfunction in AL
  1702.  01h    invalid task number
  1703.  02h    tried to switch to task with no memory size
  1704.  03h    tried to kill program in partition with no program running
  1705.  04h    tried to change size of an active memory partition
  1706.  05h    invalid memory size
  1707.  06h    tried to send command to task with a pending previous command
  1708. --------T-21DF02-----------------------------
  1709. INT 21 - Software Carousel - KILL PROGRAM IN MEMORY PARTITION
  1710.     AX = DF02h
  1711.     BL = task number
  1712. Return: AL = status
  1713.         00h Carousel not running
  1714.         01h successful
  1715.         FFh unsucessful
  1716.         AH = error code (01h,03h) (see AX=DF01h)
  1717. --------T-21DF03-----------------------------
  1718. INT 21 - Software Carousel - GET PARTITION SIZE AND PROGRAM STATUS
  1719.     AX = DF03h
  1720.     BL = task number
  1721. Return: AL = status
  1722.         00h Carousel not running
  1723.         01h successful
  1724.         BL = partition state (00h no program running, 01h prog running)
  1725.         DX = partition size in KB
  1726.         FFh unsucessful
  1727.         AH = error code (01h) (see AX=DF01h)
  1728. --------T-21DF04-----------------------------
  1729. INT 21 - Software Carousel - GET PARTITION NAME
  1730.     AX = DF04h
  1731.     BL = task number
  1732. Return: AL = status
  1733.         00h Carousel not running
  1734.         01h successful
  1735.         CX = length of name (00h if default partition name)
  1736.         ES:BX -> partition name (if CX nonzero)
  1737.         FFh unsucessful
  1738.         AH = error code (01h) (see AX=DF01h)
  1739. --------T-21DF05-----------------------------
  1740. INT 21 - Software Carousel - CHANGE PARTITION SIZE
  1741.     AX = DF05h
  1742.     BL = task number
  1743.     DX = new size in KB
  1744. Return: AL = status
  1745.         00h Carousel not running
  1746.         01h successful
  1747.         FFh unsucessful
  1748.         AH = error code (01h,04h,05h) (see AX=DF01h)
  1749.     BX = minimum size allowed
  1750.     CX = maximum size available
  1751. --------T-21DF06-----------------------------
  1752. INT 21 - Software Carousel - CHANGE PARTITION NAME
  1753.     AX = DF06h
  1754.     BL = task number
  1755.     CX = length of new name (00h to use default, max 18h)
  1756.     DS:SI -> new name
  1757. Return: AL = status
  1758.         00h Carousel not running
  1759.         01h successful
  1760.         FFh unsucessful
  1761.         AH = error code (01h) (see AX=DF01h)
  1762. --------T-21DF07-----------------------------
  1763. INT 21 - Software Carousel - SEND COMMAND TO MEMORY SECTION
  1764.     AX = DF07h
  1765.     BL = task number
  1766.     CX = length of command (max 8 chars)
  1767.     DS:SI -> command line
  1768. Return: AL = status
  1769.         00h Carousel not running
  1770.         01h successful
  1771.         FFh unsucessful
  1772.         AH = error code (01h,06h) (see AX=DF01h)
  1773. Note:    the maximum length seems too small and may be a typo for 80 characters
  1774. --------T-21DF08-----------------------------
  1775. INT 21 - Software Carousel - SELECTIVELY ENABLE/DISABLE MENU AND SWITCHING
  1776.     AX = DF08h
  1777.     BL = new state of keyboard (00h disabled, 01h enabled)
  1778. Return: AL = status
  1779.         00h Carousel not running
  1780.         01h successful
  1781. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1782. Note:    when the keyboard is is disabled, the user may neither access the
  1783.       Carousel menu nor switch to another memory section
  1784. --------T-21DF09-----------------------------
  1785. INT 21 - Software Carousel - BOOT THE SYSTEM
  1786.     AX = DF09h
  1787. Return: AL = status
  1788.         00h Carousel not running
  1789.         FFh unsucessful
  1790.         AH = error code (01h,03h) (see AX=DF01h)
  1791. Note:    this function never returns is successful
  1792. --------T-21DF0A-----------------------------
  1793. INT 21 - Software Carousel - GET MEMORY SIZE/PARTITION NUMBER OF CURRENT TASK
  1794.     AX = DF0Ah
  1795. Return: AL = status
  1796.         00h Carousel not running
  1797.         01h successful
  1798.         BL = task number
  1799.         DX = memory size in KB
  1800.         FFh unsucessful
  1801.         AH = error code (01h,03h) (see AX=DF01h)
  1802. --------T-21DF0B-----------------------------
  1803. INT 21 - Software Carousel - SET TASK SWITCH CALLBACK
  1804.     AX = DF0Bh
  1805.     BH = interrupt number or 00h
  1806.     BL = function number to invoke on partition switch
  1807.     CL = function number to call when it is safe for resident programs
  1808.         to perform DOS calls
  1809.     DS:DX -> FAR function to call if BH=00h
  1810. Return: AL = status
  1811.         00h Carousel not running
  1812.         01h successful
  1813.         FFh unsucessful
  1814.         AH = error code (01h,03h) (see AX=DF01h)
  1815. Notes:    the specified interrupt or FAR function is called with AH set to the
  1816.       appropriate one of the values specified in BL and CL, and BL set to
  1817.       the new task number
  1818.     the function specified by CL will not be called until the notification
  1819.       is enabled with AX=DF0Ch
  1820. SeeAlso: AX=DF0Ch
  1821. --------T-21DF0C-----------------------------
  1822. INT 21 - Software Carousel - ENABLE DOS-CALL SAFETY NOTIFICATION
  1823.     AX = DF0Ch
  1824. Return: AL = status
  1825.         00h Carousel not running
  1826.         01h successful
  1827. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1828. SeeAlso: AX=DF0Bh
  1829. --------O-21E0-------------------------------
  1830. INT 21 - Digital Research DOS Plus - CALL BDOS
  1831.     AH = E0h
  1832.     CL = BDOS function number (see INT E0"CP/M")
  1833.     other registers as appropriate for function
  1834. Return: as appropriate for function
  1835. SeeAlso: AX=4459h,INT E0"CP/M"
  1836. --------E-21E0-------------------------------
  1837. INT 21 - OS/286, OS/386 - INITIALIZE REAL PROCEDURE
  1838.     AH = E0h
  1839.     ???
  1840. Return: ???
  1841. SeeAlso: AH=E1h"OS/286"
  1842. --------T-21E0-------------------------------
  1843. INT 21 - DoubleDOS - MENU CONTROL
  1844.     AH = E0h
  1845.     AL = subfunction
  1846.         01h exchange tasks
  1847.         73h resume invisible job if suspended
  1848.         74h kill other job
  1849.         75h suspend invisible job
  1850. Note:    identical to AH=F0h
  1851. SeeAlso: AH=F0h"DoubleDOS"
  1852. --------v-21E0-------------------------------
  1853. INT 21 - VIRUS - "Jerusalem", "Armagedon" - INSTALLATION CHECK
  1854.     AH = E0h
  1855. Return: AX = 0300h if "Jerusalem" resident
  1856.     AX = DADAh if "Armagedon" resident
  1857. SeeAlso: AH=DEh"VIRUS",AX=DEDEh"VIRUS",AX=E00Fh
  1858. --------N-21E0-------------------------------
  1859. INT 21 - Novell NetWare, Alloy NTNX - PRINT SPOOLING
  1860.     AH = E0h
  1861.     DS:SI -> request buffer (see below)
  1862.     ES:DI -> reply buffer
  1863. Return: AL = status
  1864. Note:    this function was added in NetWare 4.0, but is no longer listed in
  1865.       current Novell documentation and may no longer be supported
  1866. SeeAlso: AH-E3h/SF=68h
  1867.  
  1868. Format of request buffer:
  1869. Offset    Size    Description
  1870.  00h    WORD    length of following data
  1871.  02h    BYTE    subfunction
  1872.         00h spool data to a capture file
  1873.         01h close and queue capture file
  1874.         02h set spool flags
  1875.         03h spool existing file
  1876.         04h get spool queue entry
  1877.         05h remove entry from spool queue
  1878.  03h    ???
  1879. --------N-21E0--SF06-------------------------
  1880. INT 21 - Novell NetWare - PRINT SERVICES - GET PRINTER STATUS
  1881.     AH = E0h subfn 06h
  1882.     DS:SI -> request buffer (see below)
  1883.     ES:DI -> reply buffer (see below)
  1884. Return: AL = status
  1885.         00h successful
  1886.         FFh no such printer
  1887. Desc:    get current state of specified printer attached to the server
  1888. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1889.       Alloy NTNX
  1890.  
  1891. Format of request buffer:
  1892. Offset    Size    Description
  1893.  00h    WORD    0002h (length of following data)
  1894.  02h    BYTE    06h (subfunction "Get Printer Status")
  1895.  03h    BYTE    printer number (00h-04h)
  1896.  
  1897. Format of reply buffer:
  1898. Offset    Size    Description
  1899.  00h    WORD    (call) 0004h (size of following results buffer)
  1900.  02h    BYTE    flag: 00h printer active, FFh printer halted
  1901.  03h    BYTE    flag: 00h printer online, 01h printer offline
  1902.  04h    BYTE    current form type
  1903.  05h    BYTE    target printer number (00h-04h)
  1904.         same as number in request buffer unless rerouted by server
  1905.         console
  1906. --------N-21E0--SF09-------------------------
  1907. INT 21 - Novell NetWare - PRINT SERVICES - SPECIFY CAPTURE FILE
  1908.     AH = E0h subfn 09h
  1909.     DS:SI -> request buffer (see below)
  1910.     ES:DI -> reply buffer (see below)
  1911. Return: AL = status
  1912.         00h successful
  1913.         9Ch invalid path
  1914. Desc:    create a permanent capture file for the next print capture to be
  1915.       started
  1916. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1917.       Alloy NTNX
  1918.     the caller must have read, write, and create rights for the directory
  1919.       containing the capture file
  1920.  
  1921. Format of request buffer:
  1922. Offset    Size    Description
  1923.  00h    WORD    length of following data (max 102h)
  1924.  02h    BYTE    09h (subfunction "Specify Capture File")
  1925.  03h    BYTE    directory handle or 00h
  1926.  04h    BYTE    length of filename
  1927.  05h  N BYTEs    name of capture file
  1928.  
  1929. Format of reply buffer:
  1930. Offset    Size    Description
  1931.  00h    WORD    (call) 0000h (no results returned)
  1932. --------v-21E00F-----------------------------
  1933. INT 21 - VIRUS - "8-tunes" - INSTALLATION CHECK
  1934.     AX = E00Fh
  1935. Return: AX = 4C31h if resident
  1936. SeeAlso: AH=E0h"VIRUS",AH=E1h"VIRUS"
  1937. --------E-21E1-------------------------------
  1938. INT 21 - OS/286, OS/386 - ISSUE REAL PROCEDURE CALL
  1939.     AH = E1h
  1940.     ???
  1941. Return: ???
  1942. Note:    protected mode only???
  1943. SeeAlso: AH=E0h"OS/286",AH=E2h"OS/286",AH=E3h"OS/286",AX=250Eh,INT 31/AX=0301h
  1944. --------T-21E1-------------------------------
  1945. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  1946.     AH = E1h
  1947. SeeAlso: AH=E2h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  1948. SeeAlso: AH=F1h"DoubleDOS"
  1949. --------v-21E1-------------------------------
  1950. INT 21 - VIRUS - "Mendoza", "Fu Manchu" - INSTALLATION CHECK
  1951.     AH = E1h
  1952. Return: AX = 0300h if "Mendoza" resident
  1953.     AX = 0400h if "Fu Manchu" resident
  1954. SeeAlso: AX=E00Fh,AH=E4h"VIRUS"
  1955. --------N-21E1--SF00-------------------------
  1956. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND BROADCAST MESSAGE
  1957.     AH = E1h subfn 00h
  1958.     DS:SI -> request buffer (see below)
  1959.     ES:DI -> reply buffer (see below)
  1960. Return: AL = status
  1961.         00h successful
  1962.         FEh I/O error or out of dynamic workspace
  1963. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1964. SeeAlso: AH=DEh"NetWare",AH=DEh/DL=04h,AH=E1h/SF=01h,AH=E1h/SF=04h
  1965. SeeAlso: AH=E1h/SF=09h
  1966.  
  1967. Format of request buffer:
  1968. Offset    Size    Description
  1969.  00h    WORD    length of following data (max 9Eh)
  1970.  02h    BYTE    00h (subfunction "Send Broadcast Message")
  1971.  03h    BYTE    number of connections (01h-64h)
  1972.  04h  N BYTEs    list of connections to receive broadcast message
  1973.     BYTE    length of message (01h-37h)
  1974.       N BYTEs    broadcast message (no control characters or characters > 7Eh)
  1975.  
  1976. Format of reply buffer:
  1977. Offset    Size    Description
  1978.  00h    WORD    (call) size of following results buffer (max 65h)
  1979.  02h    BYTE    number of connections
  1980.  03h  N BYTEs    list of per-connection results
  1981.         00h successful
  1982.         FCh message rejected due to lack of buffer space
  1983.         FDh invalid connection number
  1984.         FFh blocked (see also AH=E1h/SF=02h)
  1985. --------N-21E1--SF01-------------------------
  1986. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MESSAGE
  1987.     AH = E1h subfn 01h
  1988.     DS:SI -> request buffer (see below)
  1989.     ES:DI -> reply buffer (see below)
  1990. Return: AL = status
  1991.         00h successful
  1992.         FCh full message queue
  1993.         FEh out of dynamic workspace
  1994. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1995. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=09h
  1996.  
  1997. Format of request buffer:
  1998. Offset    Size    Description
  1999.  00h    WORD    0001h (length of following data)
  2000.  02h    BYTE    01h (subfunction "Get Broadcast Message")
  2001.  
  2002. Format of reply buffer:
  2003. Offset    Size    Description
  2004.  00h    WORD    (call) size of following results buffer (max 38h)
  2005.  02h    BYTE    length of message (00h-37h)
  2006.         00h if no broadcast messages pending
  2007.  03h  N BYTEs    message (no control characters or characters > 7Eh)
  2008. --------N-21E1-------------------------------
  2009. INT 21 - Novell NetWare - MESSAGE SERVICES - ENABLE/DISABLE BROADCAST MESSAGES
  2010.     AH = E1h
  2011.     DS:SI -> request buffer (see below)
  2012.     ES:DI -> reply buffer
  2013. Return: AL = error code
  2014. Note:    these functions are supported by NetWare 4.0+ but are not listed in
  2015.       _NetWare_System_Calls--DOS_; they may be obsolete
  2016. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=04h,AH=E1h/SF=09h
  2017.  
  2018. Format of request buffer:
  2019. Offset    Size    Description
  2020.  00h    WORD    length of following data (max 9Eh)
  2021.  02h    BYTE    subfunction
  2022.         02h disable station broadcasts
  2023.         03h enable station broadcasts
  2024.  03h    ???
  2025.  
  2026. Format of reply buffer:
  2027. Offset    Size    Description
  2028.  00h    WORD    (call) size of following results buffer
  2029.  02h    ???
  2030. --------N-21E1--SF04-------------------------
  2031. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND PERSONAL MESSAGE
  2032.     AH = E1h subfn 04h
  2033.     DS:SI -> request buffer (see below)
  2034.     ES:DI -> reply buffer (see below)
  2035. Return: AL = status
  2036.         00h successful
  2037.         FEh I/O error or out of dynamic workspace
  2038. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2039.     message pipes use CPU time on the file server; IPX, SPX, or NetBIOS
  2040.       connections should be used for peer-to-peer communications as these
  2041.       protocols do not use file server time
  2042. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2043.  
  2044. Format of request buffer:
  2045. Offset    Size    Description
  2046.  00h    WORD    length of following data (max E5h)
  2047.  02h    BYTE    04h (subfunction "Send Personal Message")
  2048.  03h    BYTE    number of connections (01h-64h)
  2049.  04h  N BYTEs    list of connections to receive broadcast message
  2050.     BYTE    length of message (01h-7Eh)
  2051.       N BYTEs    message (no control characters or characters > 7Eh)
  2052.  
  2053. Format of reply buffer:
  2054. Offset    Size    Description
  2055.  00h    WORD    (call) size of following results buffer (max 65h)
  2056.  02h    BYTE    number of connections
  2057.  03h  N BYTEs    list of per-connection results
  2058.         00h successful
  2059.         FCh message rejected because queue is full (contains 6 msgs)
  2060.         FDh incomplete pipe
  2061.         FFh failed
  2062. --------N-21E1--SF05-------------------------
  2063. INT 21 - Novell NetWare - MESSAGE SERVICES - GET PERSONAL MESSAGE
  2064.     AH = E1h subfn 05h
  2065.     DS:SI -> request buffer (see below)
  2066.     ES:DI -> reply buffer (see below)
  2067. Return: AL = status
  2068.         00h successful
  2069.         FEh out of dynamic workspace
  2070. Desc:    return the oldest message in the default file server's message queue
  2071.       for the calling workstation
  2072. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2073. SeeAlso: AH=E1h/SF=01h,AH=E1h/SF=04h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2074.  
  2075. Format of request buffer:
  2076. Offset    Size    Description
  2077.  00h    WORD    0001h (length of following data)
  2078.  02h    BYTE    05h (subfunction "Get Personal Message")
  2079.  
  2080. Format of reply buffer:
  2081. Offset    Size    Description
  2082.  00h    WORD    (call) size of following results buffer (max 80h)
  2083.  02h    BYTE    connection number of sending station
  2084.  03h    BYTE    length of message (00h-7Eh)
  2085.         00h if no personal messages pending
  2086.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2087. --------N-21E1--SF06-------------------------
  2088. INT 21 - Novell NetWare - MESSAGE SERVICES - OPEN MESSAGE PIPE
  2089.     AH = E1h subfn 06h
  2090.     DS:SI -> request buffer (see below)
  2091.     ES:DI -> reply buffer (see below)
  2092. Return: AL = status
  2093.         00h successful
  2094.         FEh out of dynamic workspace
  2095. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2096. SeeAlso: AH=E1h/SF=04h,AH=E1h/SF=07h,AH=E1h/SF=08h
  2097.  
  2098. Format of request buffer:
  2099. Offset    Size    Description
  2100.  00h    WORD    length of following data (max 66h)
  2101.  02h    BYTE    06h (subfunction "Open Message Pipe")
  2102.  03h    BYTE    number of pipes to open (01h-64h)
  2103.  04h  N BYTEs    list of connection numbers
  2104.  
  2105. Format of reply buffer:
  2106. Offset    Size    Description
  2107.  00h    WORD    (call) size of following results buffer (max 65h)
  2108.  02h    BYTE    number of connections
  2109.  03h  N BYTEs    list of results
  2110.         00h successful
  2111.         FEh incomplete (target half not yet created)
  2112.         FFh failed
  2113. --------N-21E1--SF07-------------------------
  2114. INT 21 - Novell NetWare - MESSAGE SERVICES - CLOSE MESSAGE PIPE
  2115.     AH = E1h subfn 07h
  2116.     DS:SI -> request buffer (see below)
  2117.     ES:DI -> reply buffer (see below)
  2118. Return: AL = status
  2119.         00h successful
  2120.         FCh full message queue
  2121.         FEh out of dynamic workspace
  2122. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2123. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2124.  
  2125. Format of request buffer:
  2126. Offset    Size    Description
  2127.  00h    WORD    length of following data (max 66h)
  2128.  02h    BYTE    07h (subfunction "Close Message Pipe")
  2129.  03h    BYTE    number of pipes to close (01h-64h)
  2130.  04h  N BYTEs    list of connection numbers
  2131.  
  2132. Format of reply buffer:
  2133. Offset    Size    Description
  2134.  00h    WORD    (call) size of following results buffer (max 65h)
  2135.  02h    BYTE    number of connections
  2136.  03h  N BYTEs    list of results
  2137.         00h successful
  2138.         FDh failed
  2139.         FFh no such pipe
  2140. --------N-21E1--SF08-------------------------
  2141. INT 21 - Novell NetWare - MESSAGE SERVICES - CHECK PIPE STATUS
  2142.     AH = E1h subfn 08h
  2143.     DS:SI -> request buffer (see below)
  2144.     ES:DI -> reply buffer (see below)
  2145. Return: AL = status (see below)
  2146. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2147. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=07h
  2148.  
  2149. Values for status:
  2150.  00h    successful
  2151.  FCh    full message queue
  2152.  FEh    out of dynamic workspace
  2153.  
  2154. Format of request buffer:
  2155. Offset    Size    Description
  2156.  00h    WORD    length of following data (max 66h)
  2157.  02h    BYTE    08h (subfunction "Check Pipe Status")
  2158.  03h    BYTE    number of pipes to monitor (01h-64h)
  2159.  04h  N BYTEs    list of connection numbers
  2160.  
  2161. Format of reply buffer:
  2162. Offset    Size    Description
  2163.  00h    WORD    (call) size of following results buffer (max 65h)
  2164.  02h    BYTE    number of connections
  2165.  03h  N BYTEs    list of pipe statuses
  2166.         00h open
  2167.         FEh incomplete
  2168.         FFh closed
  2169. --------N-21E1--SF09-------------------------
  2170. INT 21 - Novell NetWare - MESSAGE SERVICES - BROADCAST TO CONSOLE
  2171.     AH = E1h subfn 09h
  2172.     DS:SI -> request buffer (see below)
  2173.     ES:DI -> reply buffer (see below)
  2174. Return: AL = status (see AH=E1h/SF=09h)
  2175. Desc:    send a one-line message to the system console on the default file
  2176.       server
  2177. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2178. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=01h,AH=E3h/SF=D1h
  2179.  
  2180. Format of request buffer:
  2181. Offset    Size    Description
  2182.  00h    WORD    length of following data (max 3Eh)
  2183.  02h    BYTE    09h (subfunction "Broadcast to Console")
  2184.  03h    BYTE    length of message (01h-3Ch)
  2185.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2186.  
  2187. Format of reply buffer:
  2188. Offset    Size    Description
  2189.  00h    WORD    (call) 0000h (no results returned)
  2190. --------E-21E2-------------------------------
  2191. INT 21 - OS/286, OS/386 - SET REAL PROCEDURE SIGNAL HANDLER
  2192.     AH = E2h
  2193.     ???
  2194. Return: ???
  2195. SeeAlso: AH=E0h"OS/286",AH=E1h"OS/286",AH=E6h"OS/286"
  2196. --------N-21E2-------------------------------
  2197. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  2198.     AH = E2h
  2199.     AL = character
  2200. Return: AL = 00h successful
  2201.          01h buffer full (128 characters)
  2202. SeeAlso: AH=E1h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  2203. SeeAlso: AH=F2h"DoubleDOS"
  2204. --------N-21E2--SF00-------------------------
  2205. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY HANDLE
  2206.     AH = E2h subfn 00h
  2207.     DS:SI -> request buffer (see below)
  2208.     ES:DI -> reply buffer (see below)
  2209. Return: AL = status (00h,98h,9Bh,9Ch) (see below)
  2210. Desc:    set the target handle to reference the directory specified by the
  2211.       source handle and the source path; both handles must refer to the
  2212.       same file server
  2213. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2214.       Alloy NTNX
  2215.     the target handle is not changed if this function fails
  2216. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=12h,AH=E2h/SF=13h
  2217.  
  2218. Values for status:
  2219.  00h    successful
  2220.  84h    not permitted to create
  2221.  8Ah    not permitted to delete
  2222.  8Bh    not permitted to rename
  2223.  8Ch    not permitted to modify
  2224.  98h    nonexistent volume
  2225.  9Bh    invalid directory handle
  2226.  9Ch    invalid path
  2227.  9Eh    invalid filename
  2228.  9Fh    directory currently in use
  2229.  A0h    directory not empty
  2230.  FCh    no such bindery object
  2231.  
  2232. Format of request buffer:
  2233. Offset    Size    Description
  2234.  00h    WORD    length of following data (max 103h)
  2235.  02h    BYTE    00h (subfunction "Set Directory Handle")
  2236.  03h    BYTE    directory handle of target
  2237.  04h    BYTE    directory handle of source
  2238.  05h    BYTE    length of source directory path (01h-FFh)
  2239.  06h  N BYTEs    source directory path
  2240.  
  2241. Format of reply buffer:
  2242. Offset    Size    Description
  2243.  00h    WORD    (call) 0000h (no results returned)
  2244. --------N-21E2--SF01-------------------------
  2245. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY PATH
  2246.     AH = E2h subfn 01h
  2247.     DS:SI -> request buffer (see below)
  2248.     ES:DI -> reply buffer (see below)
  2249. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2250. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2251.       Alloy NTNX
  2252. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=03h,AH=E2h/SF=1Ah,AH=E9h
  2253.  
  2254. Format of request buffer:
  2255. Offset    Size    Description
  2256.  00h    WORD    0002h (length of following data)
  2257.  02h    BYTE    01h (subfunction "Get Directory Path")
  2258.  03h    BYTE    directory handle
  2259.  
  2260. Format of reply buffer:
  2261. Offset    Size    Description
  2262.  00h    WORD    (call) length of following data buffer
  2263.  02h    BYTE    length of directory path (01h-FFh)
  2264.  03h  N BYTEs    full directory path including volume
  2265. --------N-21E2--SF02-------------------------
  2266. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY INFORMATION
  2267.     AH = E2h subfn 02h
  2268.     DS:SI -> request buffer (see below)
  2269.     ES:DI -> reply buffer (see below)
  2270. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2271. Desc:    get information about the first or next subdirectory of the specified
  2272.       directory
  2273. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2274.       Alloy NTNX
  2275. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=03h,AH=E2h/SF=19h
  2276.  
  2277. Format of request buffer:
  2278. Offset    Size    Description
  2279.  00h    WORD    length of following data (max 104h)
  2280.  02h    BYTE    02h (subfunction "Scan Directory Information")
  2281.  03h    BYTE    directory handle
  2282.  04h    WORD    (big-endian) subdirectory number
  2283.         0000h for first call, returned subdir number + 1 on next call
  2284.  06h    BYTE    length of directory path
  2285.  07h  N BYTEs    directory path
  2286.  
  2287. Format of reply buffer:
  2288. Offset    Size    Description
  2289.  00h    WORD    (call) 001Ch (length of following data buffer)
  2290.  02h 16 BYTEs    subdirectory name
  2291.  12h    DWORD    (big-endian) date and time of creation (see below)
  2292.  16h    DWORD    (big-endian) object ID of owner
  2293.  1Ah    BYTE    maximum directory rights (see AH=E2h/SF=03h)
  2294.  1Bh    BYTE    unused
  2295.  1Ch    WORD    (big-endian) subdirectory number
  2296.  
  2297. Bitfields for date and time:
  2298.  bits 31-25    year-1980
  2299.  bits 24-21    month
  2300.  bits 20-16    day
  2301.  bits 15-11    hour
  2302.  bits 10-5    minute
  2303.  bits 4-0    second
  2304. --------N-21E2--SF03-------------------------
  2305. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET EFFECTIVE DIRECTORY RIGHTS
  2306.     AH = E2h subfn 03h
  2307.     DS:SI -> request buffer (see below)
  2308.     ES:DI -> reply buffer (see below)
  2309. Return: AL = status (00h,98h,9Bh) (see AH=E2h/SF=00h)
  2310. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2311.       Alloy NTNX
  2312. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=02h
  2313.  
  2314. Format of request buffer:
  2315. Offset    Size    Description
  2316.  00h    WORD    length of following data (max 102h)
  2317.  02h    BYTE    03h (subfunction "Get Effective Directory Rights")
  2318.  03h    BYTE    directory handle
  2319.  04h    BYTE    length of directory path (00h-FFh)
  2320.  05h  N BYTEs    directory path
  2321.  
  2322. Format of reply buffer:
  2323. Offset    Size    Description
  2324.  00h    WORD    (call) 0001h (length of following data buffer)
  2325.  02h    BYTE    effective directory rights (see below)
  2326.  
  2327. Bitfields for directory rights:
  2328.  bit 0    reading allowed
  2329.  bit 1    writing allowed
  2330.  bit 2    opens allowed
  2331.  bit 3    file creation allowed
  2332.  bit 4    deletion allowed
  2333.  bit 5    "parental" may create/delete subdirectories and
  2334.     grant/revoke trustee rights
  2335.  bit 6    directory search allowed
  2336.  bit 7    file attributes may be changed
  2337. --------N-21E2--SF04-------------------------
  2338. INT 21 - Novell NetWare - DIRECTORY SERVICES - MODIFY MAXIMUM RIGHTS MASK
  2339.     AH = E2h subfn 04h
  2340.     DS:SI -> request buffer (see below)
  2341.     ES:DI -> reply buffer (see below)
  2342. Return: AL = status (00h,8Ch,98h,9Ch) (see AH=E2h/SF=00h)
  2343. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2344.       Alloy NTNX
  2345. SeeAlso: AH=E2h/SF=03h,AH=E2h/SF=0Ah,AH=E2h/SF=0Dh
  2346.  
  2347. Format of request buffer:
  2348. Offset    Size    Description
  2349.  00h    WORD    length of following data (max 104h)
  2350.  02h    BYTE    04h (subfunction "Modify Maximum Rights Mask")
  2351.  03h    BYTE    directory handle
  2352.  04h    BYTE    rights to grant (see AH=E2h/SF=03h)
  2353.  05h    BYTE    rights to revoke (see AH=E2h/SF=03h)
  2354.  06h    BYTE    length of directory path (00h-FFh)
  2355.  07h  N BYTEs    directory path
  2356. Note:    the rights specified at offset 05h are revoked first, and then the
  2357.       rights specified at offset 04h are added to the resulting rights
  2358.       mask
  2359.  
  2360. Format of reply buffer:
  2361. Offset    Size    Description
  2362.  00h    WORD    (call) 0000h (no results returned)
  2363. --------N-21E2--SF05-------------------------
  2364. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NUMBER
  2365.     AH = E2h subfn 05h
  2366.     DS:SI -> request buffer (see below)
  2367.     ES:DI -> reply buffer (see below)
  2368. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2369. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2370.       Alloy NTNX
  2371. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  2372.  
  2373. Format of request buffer:
  2374. Offset    Size    Description
  2375.  00h    WORD    length of following data (max 12h)
  2376.  02h    BYTE    05h (subfunction "Get Volume Number")
  2377.  03h    BYTE    length of volume name (01h-10h)
  2378.  04h  N BYTEs    volume name
  2379.  
  2380. Format of reply buffer:
  2381. Offset    Size    Description
  2382.  00h    WORD    (call) 0001h (length of following results buffer)
  2383.  02h    BYTE    volume number
  2384. --------N-21E2--SF06-------------------------
  2385. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NAME
  2386.     AH = E2h subfn 06h
  2387.     DS:SI -> request buffer (see below)
  2388.     ES:DI -> reply buffer (see below)
  2389. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2390. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2391.       Alloy NTNX
  2392. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E2h/SF=1Ah
  2393. SeeAlso: AH=E3h/SF=E9h
  2394.  
  2395. Format of request buffer:
  2396. Offset    Size    Description
  2397.  00h    WORD    0002h (length of following data)
  2398.  02h    BYTE    06h (subfunction "Get Volume Name")
  2399.  03h    BYTE    volume number
  2400.  
  2401. Format of reply buffer:
  2402. Offset    Size    Description
  2403.  00h    WORD    (call) 0011h (length of following results buffer)
  2404.  02h    BYTE    length of volume name
  2405.  03h 16 BYTEs    NUL-padded volume name
  2406. --------N-21E2--SF0A-------------------------
  2407. INT 21 - Novell NetWare - DIRECTORY SERVICES - CREATE DIRECTORY
  2408.     AH = E2h subfn 0Ah
  2409.     DS:SI -> request buffer (see below)
  2410.     ES:DI -> reply buffer (see below)
  2411. Return: AL = status (00h,84h,98h,FCh) (see AH=E2h/SF=00h)
  2412. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2413.       Alloy NTNX
  2414. SeeAlso: AH=39h,AH=E2h/SF=0Bh,AH=E2h/SF=0Fh
  2415.  
  2416. Format of request buffer:
  2417. Offset    Size    Description
  2418.  00h    WORD    length of following data (max 103h)
  2419.  02h    BYTE    0Ah (subfunction "Create Directory")
  2420.  03h    BYTE    directory handle
  2421.  04h    BYTE    maximum directory rights (see AH=E2h/SF=01h)
  2422.  05h    BYTE    length of directory path (00h-FFh)
  2423.  06h  N BYTEs    directory path
  2424.  
  2425. Format of reply buffer:
  2426. Offset    Size    Description
  2427.  00h    WORD    (call) 0000h (no data returned)
  2428. --------N-21E2--SF0B-------------------------
  2429. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE DIRECTORY
  2430.     AH = E2h subfn 0Bh
  2431.     DS:SI -> request buffer (see below)
  2432.     ES:DI -> reply buffer (see below)
  2433. Return: AL = status (00h,8Ah,98h,9Bh,9Ch,9Fh,A0h) (see AH=E2h/SF=00h)
  2434. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2435.       Alloy NTNX
  2436. SeeAlso: AH=3Ah,AH=E2h/SF=0Ah,AH=E2h/SF=0Fh
  2437.  
  2438. Format of request buffer:
  2439. Offset    Size    Description
  2440.  00h    WORD    length of following data (max 103h)
  2441.  02h    BYTE    0Bh (subfunction "Delete Directory")
  2442.  03h    BYTE    directory handle
  2443.  04h    BYTE    unused
  2444.  05h    BYTE    length of directory path (00h-FFh)
  2445.  06h  N BYTEs    directory path
  2446.  
  2447. Format of reply buffer:
  2448. Offset    Size    Description
  2449.  00h    WORD    (call) 0000h (no data returned)
  2450. --------N-21E2--SF0C-------------------------
  2451. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY FOR TRUSTEES
  2452.     AH = E2h subfn 0Ch
  2453.     DS:SI -> request buffer (see below)
  2454.     ES:DI -> reply buffer (see below)
  2455. Return: AL = status
  2456.         00h successful
  2457.         9Ch no more trustees
  2458. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2459. SeeAlso: AH=E2h/SF=0Dh,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2460.  
  2461. Format of request buffer:
  2462. Offset    Size    Description
  2463.  00h    WORD    length of following data (max 103h)
  2464.  02h    BYTE    0Ch (subfunction "Scan Directory For Trustees")
  2465.  03h    BYTE    directory handle
  2466.  04h    BYTE    sequence number
  2467.         00h on first call, increment for each subsequent call
  2468.  05h    BYTE    length of directory path (00h-FFh)
  2469.  06h  N BYTEs    directory path
  2470.  
  2471. Format of reply buffer:
  2472. Offset    Size    Description
  2473.  00h    WORD    (call) 0031h (length of following results buffer)
  2474.  02h 16 BYTEs    directory name
  2475.  12h  4 BYTEs    date and time of creation
  2476.  16h    DWORD    (big-endian) object ID of owner
  2477.  1Ah  5 DWORDs    (big-endian) object IDs of Trustees 0 through 4
  2478.         00000000h = end of group
  2479.  2Eh  5 BYTEs    directory rights for Trustees 0 through 4 (see AH=E2h/SF=03h)
  2480. --------N-21E2--SF0D-------------------------
  2481. INT 21 - Novell NetWare - DIRECTORY SERVICES - ADD TRUSTEE TO DIRECTORY
  2482.     AH = E2h subfn 0Dh
  2483.     DS:SI -> request buffer (see below)
  2484.     ES:DI -> reply buffer (see below)
  2485. Return: AL = status (00h,8Ch,FCh) (see AH=E2h/SF=00h)
  2486. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2487.       Alloy NTNX
  2488. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2489.  
  2490. Format of request buffer:
  2491. Offset    Size    Description
  2492.  00h    WORD    length of following data (max 107h)
  2493.  02h    BYTE    0Dh (subfunction "Add Trustee To Directory")
  2494.  03h    BYTE    directory handle
  2495.  04h    DWORD    (big-endian) object ID of trustee
  2496.  08h    BYTE    trustee directory rights (see AH=E2h/SF=01h)
  2497.  09h    BYTE    length of directory path (00h-FFh)
  2498.  0Ah  N BYTEs    directory path
  2499.  
  2500. Format of reply buffer:
  2501. Offset    Size    Description
  2502.  00h    WORD    (call) 0000h (no data returned)
  2503. --------N-21E2--SF0E-------------------------
  2504. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE TRUSTEE FROM DIRECTORY
  2505.     AH = E2h subfn 0Eh
  2506.     DS:SI -> request buffer (see below)
  2507.     ES:DI -> reply buffer (see below)
  2508. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2509. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2510.       Alloy NTNX
  2511. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh
  2512.  
  2513. Format of request buffer:
  2514. Offset    Size    Description
  2515.  00h    WORD    length of following data (max 107h)
  2516.  02h    BYTE    0Eh (subfunction "Delete Trustee From Directory")
  2517.  03h    BYTE    directory handle
  2518.  04h    DWORD    (big-endian) object ID of trustee
  2519.  08h    BYTE    unused
  2520.  09h    BYTE    length of directory path (00h-FFh)
  2521.  0Ah  N BYTEs    directory path
  2522.  
  2523. Format of reply buffer:
  2524. Offset    Size    Description
  2525.  00h    WORD    (call) 0000h (no data returned)
  2526. --------N-21E2--SF0F-------------------------
  2527. INT 21 - Novell NetWare - DIRECTORY SERVICES - RENAME DIRECTORY
  2528.     AH = E2h subfn 0Fh
  2529.     DS:SI -> request buffer (see below)
  2530.     ES:DI -> reply buffer (see below)
  2531. Return: AL = status (00h,8Bh,9Bh,9Ch,9Eh) (see AH=E2h/SF=00h)
  2532. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2533.       Alloy NTNX
  2534.     directories SYS:LOGIN, SYS:MAIL, and SYS:PUBLIC must not be renamed
  2535. SeeAlso: AH=56h,AH=E2h/SF=0Ah,AH=E2h/SF=0Bh
  2536.  
  2537. Format of request buffer:
  2538. Offset    Size    Description
  2539.  00h    WORD    length of following data (max 111h)
  2540.  02h    BYTE    0Fh (subfunction "Rename Directory")
  2541.  03h    BYTE    directory handle
  2542.  04h    BYTE    length of directory path (00h-FFh)
  2543.  05h  N BYTEs    directory path
  2544.     BYTE    length of new directory name (01h-0Eh)
  2545.       N BYTEs    new directory name
  2546.  
  2547. Format of reply buffer:
  2548. Offset    Size    Description
  2549.  00h    WORD    (call) 0000h (no data returned)
  2550. --------N-21E2--SF10-------------------------
  2551. INT 21 - Novell NetWare - FILE SERVICES - PURGE ERASED FILES
  2552.     AH = E2h subfn 10h
  2553.     DS:SI -> request buffer (see below)
  2554.     ES:DI -> reply buffer (see below)
  2555. Return: AL = status
  2556.         00h successful
  2557.         C6h no console rights
  2558. Desc:    purges files marked for deletion on the file server by the calling
  2559.       workstation
  2560. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2561.       Alloy NTNX
  2562. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=11h,AH=E3h/SF=CEh,AX=F244h
  2563.  
  2564. Format of request buffer:
  2565. Offset    Size    Description
  2566.  00h    WORD    0001h (length of following data)
  2567.  02h    BYTE    10h (subfunction "Purge Erased Files")
  2568.  
  2569. Format of reply buffer:
  2570. Offset    Size    Description
  2571.  00h    WORD    (call) 0000h (no results returned)
  2572. --------N-21E2--SF11-------------------------
  2573. INT 21 - Novell NetWare - FILE SERVICES - RESTORE ERASED FILE
  2574.     AH = E2h subfn 11h
  2575.     DS:SI -> request buffer (see below)
  2576.     ES:DI -> reply buffer (see below)
  2577. Return: AL = status
  2578.         00h successful
  2579.         98h nonexistent volume
  2580.         FFh no more erased files
  2581. Desc:    restores one file marked for deletion which has not yet been purged
  2582. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2583.       Alloy NTNX
  2584. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=10h,AH=E3h/SF=CEh,AX=F244h
  2585.  
  2586. Format of request buffer:
  2587. Offset    Size    Description
  2588.  00h    WORD    length of following data (max 13h)
  2589.  02h    BYTE    11h (subfunction "Restore Erased File")
  2590.  03h    BYTE    directory handle or 00h
  2591.  04h    BYTE    length of volume name
  2592.  05h  N BYTEs    volume name (including colon)
  2593. Note:    if both a directory handle and a volume name are specified, the volume
  2594.       name overrides the handle
  2595.  
  2596. Format of reply buffer:
  2597. Offset    Size    Description
  2598.  00h    WORD    (call) 001Eh (size of following results buffer)
  2599.  02h 15 BYTEs    ASCIZ name of erased file
  2600.  11h 15 BYTEs    ASCIZ name under which file was restored
  2601. --------N-21E2--SF12-------------------------
  2602. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC PERMANENT DIRECTORY HANDLE
  2603.     AH = E2h subfn 12h
  2604.     DS:SI -> request buffer (see below)
  2605.     ES:DI -> reply buffer (see below)
  2606. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2607. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2608.       Alloy NTNX
  2609. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=13h,AH=E2h/SF=14h
  2610.  
  2611. Format of request buffer:
  2612. Offset    Size    Description
  2613.  00h    WORD    length of following data (max 103h)
  2614.  02h    BYTE    12h (subfunction "Alloc Permanent Directory Handle")
  2615.  03h    BYTE    directory handle
  2616.  04h    BYTE    drive ('A'-'Z')
  2617.  05h    BYTE    length of directory path
  2618.  06h  N BYTEs    directory path
  2619.  
  2620. Format of reply buffer:
  2621. Offset    Size    Description
  2622.  00h    WORD    (call) 0002h (size of following results buffer)
  2623.  02h    BYTE    new directory handle
  2624.  03h    BYTE    effective directory rights (see AH=E2h/SF=01h)
  2625. --------N-21E2--SF13-------------------------
  2626. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC TEMPORARY DIRECTORY HANDLE
  2627.     AH = E2h subfn 13h
  2628.     DS:SI -> request buffer (see below)
  2629.     ES:DI -> reply buffer (see AH=E2h/SF=12h)
  2630. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2631. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2632.       Alloy NTNX
  2633.     this call is the same as AH=E2h/SF=12h except that the directory handle
  2634.       will be automatically deallocated when the calling application
  2635.       executes an End of Job call (AH=D6h) or terminates
  2636. SeeAlso: AH=D6h,AH=E2h/SF=00h,AH=E2h/SF=12h,AH=E2h/SF=14h,AH=E2h/SF=16h
  2637.  
  2638. Format of request buffer:
  2639. Offset    Size    Description
  2640.  00h    WORD    length of following data (max 103h)
  2641.  02h    BYTE    13h (subfunction "Alloc Temporary Directory Handle")
  2642.  03h    BYTE    directory handle
  2643.  04h    BYTE    drive ('A'-'Z')
  2644.  05h    BYTE    length of directory path
  2645.  06h  N BYTEs    directory path
  2646. --------N-21E2--SF14-------------------------
  2647. INT 21 - Novell NetWare - DIRECTORY SERVICES - DEALLOCATE DIRECTORY HANDLE
  2648.     AH = E2h subfn 14h
  2649.     DS:SI -> request buffer (see below)
  2650.     ES:DI -> reply buffer (see below)
  2651. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2652. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2653.       Alloy NTNX
  2654. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=13h
  2655.  
  2656. Format of request buffer:
  2657. Offset    Size    Description
  2658.  00h    WORD    0002h (length of following data)
  2659.  02h    BYTE    14h (subfunction "Deallocate Directory Handle")
  2660.  03h    BYTE    directory handle
  2661.  
  2662. Format of reply buffer:
  2663. Offset    Size    Description
  2664.  00h    WORD    (call) 0000h (no returned data)
  2665. --------N-21E2--SF15-------------------------
  2666. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH HANDLE
  2667.     AH = E2h subfn 15h
  2668.     DS:SI -> request buffer (see below)
  2669.     ES:DI -> reply buffer (see below)
  2670. Return: AL = status
  2671.         00h successful
  2672. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2673.       Alloy NTNX
  2674. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=06h,AH=E2h/SF=19h,AH=E3h/SF=E9h
  2675.  
  2676. Format of request buffer:
  2677. Offset    Size    Description
  2678.  00h    WORD    0002h (length of following data)
  2679.  02h    BYTE    15h (subfunction "Get Volume Info With Handle")
  2680.  03h    BYTE    directory handle
  2681.  
  2682. Format of reply buffer:
  2683. Offset    Size    Description
  2684.  00h    WORD    (call) 001Ch (length of following results buffer)
  2685.  02h    WORD    (big-endian) sectors per block
  2686.  04h    WORD    (big-endian) total blocks on volume
  2687.  06h    WORD    (big-endian) blocks available on volume
  2688.  08h    WORD    (big-endian) total directory slots
  2689.  0Ah    WORD    (big-endian) directory slots available
  2690.  0Ch 16 BYTEs    NUL-padded volume name
  2691.  1Ch    WORD    (big-endian) flag: volume removable if nonzero
  2692. --------N-21E2--SF16-------------------------
  2693. INT 21 u - Novell NetWare - DIRECTORY SERVICES - ALLOC SPECIAL TEMP DIR HANDLE
  2694.     AH = E2h subfn 16h
  2695.     DS:SI -> request buffer (see below)
  2696.     ES:DI -> reply buffer
  2697. Return: AL = status
  2698. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX,
  2699.       but is not described in _NetWare_System_Calls--DOS_
  2700. SeeAlso: AH=E2h/SF=13h,AH=E2h/SF=14h
  2701.  
  2702. Format of request buffer:
  2703. Offset    Size    Description
  2704.  00h    WORD    length of following data
  2705.  02h    BYTE    16h (subfunction "Allocate Special Temporary Directory Handle")
  2706.     ???
  2707. --------N-21E2--SF17-------------------------
  2708. INT 21 - Novell NetWare - DIRECTORY SERVICES - SAVE DIRECTORY HANDLE
  2709.     AH = E2h subfn 17h
  2710.     DS:SI -> request buffer (see below)
  2711.     ES:DI -> reply buffer (see below)
  2712. Return: AL = status
  2713.         00h successful
  2714.         else network error code
  2715. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2716. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2717.  
  2718. Format of request buffer:
  2719. Offset    Size    Description
  2720.  00h    WORD    0002h (length of following data)
  2721.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2722.  03h    BYTE    directory handle
  2723.  
  2724. Format of reply buffer:
  2725. Offset    Size    Description
  2726.  00h    WORD    (call) 0010h (length of following results buffer)
  2727.  02h 16 BYTEs    save buffer
  2728. --------N-21E2--SF18-------------------------
  2729. INT 21 - Novell NetWare - DIRECTORY SERVICES - RESTORE DIRECTORY HANDLE
  2730.     AH = E2h subfn 18h
  2731.     DS:SI -> request buffer (see below)
  2732.     ES:DI -> reply buffer (see below)
  2733. Return: AL = status
  2734.         00h successful
  2735.         else network error code
  2736. Desc:    restore a previously saved directory handle to reproduce an executing
  2737.       environment, possibly on a different execution site
  2738. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2739. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2740.  
  2741. Format of request buffer:
  2742. Offset    Size    Description
  2743.  00h    WORD    0011h (length of following data)
  2744.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2745.  03h 16 BYTEs    save buffer
  2746.  
  2747. Format of reply buffer:
  2748. Offset    Size    Description
  2749.  00h    WORD    (call) 0002h (length of following results buffer)
  2750.  02h    BYTE    new directory handle
  2751.  03h    BYTE    effective rights (see AH=E2h/SF=03h)
  2752. --------N-21E2--SF19-------------------------
  2753. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY INFORMATION
  2754.     AH = E2h subfn 19h
  2755.     DS:SI -> request buffer (see below)
  2756.     ES:DI -> reply buffer (see below)
  2757. Return: AL = status (00h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2758. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2759. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=0Fh
  2760.  
  2761. Format of request buffer:
  2762. Offset    Size    Description
  2763.  00h    WORD    length of following data (max 10Bh)
  2764.  02h    BYTE    19h (subfunction "Set Directory Information")
  2765.  03h    BYTE    directory handle
  2766.  04h    DWORD    (big-endian) date and time of creation
  2767.  08h    DWORD    (big-endian) object ID of owner
  2768.  0Ch    BYTE    maximum directory rightes (see AH=E2h/SF=03h)
  2769.  0Dh    BYTE    length of directory path
  2770.  0Eh  N BYTEs    directory path
  2771.  
  2772. Format of reply buffer:
  2773. Offset    Size    Description
  2774.  00h    WORD    (call) 0000h (no results returned)
  2775. --------N-21E2--SF1A-------------------------
  2776. INT 21 - Novell NetWare - FILE SERVER - GET PATH FROM DIRECTORY ENTRY
  2777.     AH = E2h subfn 1Ah
  2778.     DS:SI -> request buffer (see below)
  2779.     ES:DI -> reply buffer (see below)
  2780. Return: AL = status
  2781.         00h successful
  2782. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2783.       Alloy NTNX
  2784. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=06h,AH=E3h/SF=D7h
  2785.  
  2786. Format of request buffer:
  2787. Offset    Size    Description
  2788.  00h    WORD    0004h (length of following data)
  2789.  02h    BYTE    1Ah (subfunction "Get Path From Directory Entry")
  2790.  03h    BYTE    volume number (00h-1Fh)
  2791.  04h    WORD    (big-endian) directory entry number
  2792.  
  2793. Format of reply buffer:
  2794. Offset    Size    Description
  2795.  00h    WORD    (call) size of following results record (max 200h)
  2796.  02h 256 BYTEs    path
  2797. --------E-21E3-------------------------------
  2798. INT 21 - OS/286, OS/386 - ISSUE REAL INTERRUPT
  2799.     AH = E3h
  2800.     AL = interrupt number
  2801.     ???
  2802. Return: ???
  2803. Note:    protected mode only???
  2804. SeeAlso: AH=E1h"OS/286",INT 31/AX=0300h
  2805. --------T-21E3-------------------------------
  2806. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  2807.     AH = E3h
  2808.     AL = character
  2809. Return: AL = 00h successful
  2810.          01h buffer full (128 characters)
  2811. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E8h"DoubleDOS"
  2812. SeeAlso: AH=F3h"DoubleDOS"
  2813. --------N-21E3-------------------------------
  2814. INT 21 - Novell NetWare - CONNECTION CONTROL
  2815.     AH = E3h
  2816.     DS:SI -> request buffer (see below)
  2817.     ES:DI -> reply buffer (see below)
  2818. Return: AL = status
  2819.         00h successful
  2820.         else error code
  2821. Note:    supported by NetWare 4.0+, Advanced NetWare 1.0+, and Alloy NTNX
  2822. SeeAlso: AH=E3h/SF=0Ah,AH=E3h/SF=32h,AH=E3h/SF=64h,AH=E3h/SF=C8h
  2823.  
  2824. Format of request buffer:
  2825. Offset    Size    Description
  2826.  00h    WORD    length of following data
  2827.  02h    BYTE    subfunction number
  2828.         00h login
  2829.         01h change password
  2830.         02h map user to station set
  2831.         03h map object to number
  2832.         04h map number to object
  2833.         05h get station's logged information
  2834.         06h get station's root mask (obsolete)
  2835.         07h map group name to number
  2836.         08h map number to group name
  2837.         09h get memberset M of group G
  2838.     var    depends on subfunction
  2839. Notes:    the above subfunctions are not described in _NetWare_System_Calls--DOS_
  2840.     see separate entries below for other subfunctions
  2841.  
  2842. Format of reply buffer:
  2843. Offset    Size    Description
  2844.  00h    WORD    (call) length of following buffer space for results
  2845.     var    depends on subfunction
  2846.  
  2847. Format of object property:
  2848. Offset    Size    Description
  2849.  00h 1-16 BYTEs property name
  2850.   N    BYTE    flags
  2851.         bit 0: property is dynamic
  2852.         bit 1: property is a set rather than an item
  2853.  N+1    BYTE    security levels (see below)
  2854.     ???
  2855.  
  2856. Names of well-known properties:
  2857.  ACCOUNT_BALANCE
  2858.  ACCOUNT_SERVERS
  2859.  GROUP_MEMBERS
  2860.  GROUPS_I'M_IN
  2861.  IDENTIFICATION        user's name
  2862.  LOGIN_CONTROL
  2863.  NET_ADDRESS
  2864.  OPERATORS
  2865.  PASSWORD
  2866.  SECURITY_EQUALS
  2867.  
  2868. Values for security levels:
  2869.  00h    "anyone" everyone may access
  2870.  01h    "logged" only logged-in clients may access
  2871.  02h    "object" only clients logged-in with object's name, type, and password
  2872.  03h    "supervisor" only clients logged-in with supervisor privileges
  2873.  04h    "NetWare" only NetWare may access
  2874. Note:    the above values are stored in a nybble; the high half-byte is write
  2875.       access and the low half-byte is read access
  2876.  
  2877. Values for object type:
  2878.  0000h    unknown
  2879.  0001h    user
  2880.  0002h    user group
  2881.  0003h    print queue
  2882.  0004h    file server
  2883.  0005h    job server
  2884.  0006h    gateway
  2885.  0007h    print server
  2886.  0008h    archive queue
  2887.  0009h    archive server
  2888.  000Ah    job queue
  2889.  000Bh    administration
  2890.  0026h    remote bridge server
  2891.  0047h    advertising print server
  2892.  0048h-8000h reserved
  2893.  FFFFh    wild (used only for finding objects)
  2894. --------N-21E3--SF0A-------------------------
  2895. INT 21 - Novell NetWare - CONNECTION SERVICES - ENTER LOGIN AREA
  2896.     AH = E3h subfn 0Ah
  2897.     DS:SI -> request buffer (see below)
  2898.     ES:DI -> reply buffer (see below)
  2899. Return: AL = status
  2900.         00h successful
  2901. Desc:    change the login directory for the calling workstation
  2902. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2903.       Alloy NTNX
  2904. SeeAlso: AH=D7h,AH=E3h/SF=14h
  2905.  
  2906. Format of request buffer:
  2907. Offset    Size    Description
  2908.  00h    WORD    length of following data (max 102h)
  2909.  02h    BYTE    0Ah (subfunction "Enter Login Area")
  2910.  03h    BYTE    number of local drives
  2911.  04h    BYTE    length of subdirectory name (00h-FFh)
  2912.  05h  N BYTEs    name of subdirectory under SYS:LOGIN where to find the login
  2913.         utility
  2914.  
  2915. Format of reply buffer:
  2916. Offset    Size    Description
  2917.  00h    WORD    (call) 0000h (no data returned)
  2918. --------N-21E3--SF0C-------------------------
  2919. INT 21 U - Novell Netware - VERIFY NETWORK SERIAL NUMBER
  2920.     AH = E3h subfn 0Ch
  2921.     DS:SI -> request buffer (see below)
  2922.     ES:DI -> reply buffer (see below)
  2923. Return: AL = status
  2924.         00h successful
  2925. Note:    if the network serial number to be verified is correct, the reply
  2926.       buffer will contain the corresponding application number
  2927. SeeAlso: AH=E3h/SF=12h
  2928.  
  2929. Format of request buffer:
  2930. Offset    Size    Description
  2931.  00h    WORD    0005h (length of following data)
  2932.  02h    BYTE    0Ch (subfunction "Verify Network Serial Number")
  2933.  03h    DWORD    (big-endian) network serial number to verify
  2934.  
  2935. Format of reply buffer:
  2936. Offset    Size    Description
  2937.  00h    WORD    (call) 0002h (size of following results buffer)
  2938.  02h    WORD    (big-endian) application number
  2939. --------N-21E3--SF0D-------------------------
  2940. INT 21 - Novell NetWare - MESSAGE SERVICES - LOG NETWORK MESSAGE
  2941.     AH = E3h subfn 0Dh
  2942.     DS:SI -> request buffer (see below)
  2943.     ES:DI -> reply buffer (see below)
  2944. Return: AL = status
  2945.         00h successful
  2946. Desc:    append a line to the default file server's NET$LOG.MSG file
  2947. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2948.       Alloy NTNX
  2949. SeeAlso: AH=E1h/SF=09h
  2950.  
  2951. Format of request buffer:
  2952. Offset    Size    Description
  2953.  00h    WORD    length of following data (max 52h)
  2954.  02h    BYTE    0Dh (subfunction "Log Network Message")
  2955.  03h    BYTE    length of message (01h-50h)
  2956.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2957. --------N-21E3--SF0E-------------------------
  2958. INT 21 - Novell NetWare - FILE SERVER - GET DISK UTILIZATION
  2959.     AH = E3h subfn 0Eh
  2960.     DS:SI -> request buffer (see below)
  2961.     ES:DI -> reply buffer (see below)
  2962. Return: AL = status
  2963.         00h successful
  2964.         98h nonexistent volume
  2965.         F2h not permitted to read object
  2966. Notes:    this function is supported by Advanced NetWare 2.1+
  2967.     the caller must have bindery object read privileges
  2968. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  2969.  
  2970. Format of request buffer:
  2971. Offset    Size    Description
  2972.  00h    WORD    0005h (length of following data)
  2973.  02h    BYTE    0Eh (subfunction "Get Disk Utilization")
  2974.  03h    BYTE    volume number (00h-1Fh)
  2975.  04h    DWORD    (big-endian) object ID
  2976.  
  2977. Format of reply buffer:
  2978. Offset    Size    Description
  2979.  00h    WORD    (call) 000Bh (size of following results buffer)
  2980.  02h    BYTE    volume number (00h-1Fh)
  2981.  03h    DWORD    (big-endian) object ID
  2982.  07h    WORD    (big-endian) directories used by object
  2983.  09h    WORD    (big-endian) files created by object
  2984.  0Bh    WORD    (big-endian) disk blocks used by object-created files
  2985. --------N-21E3--SF0F-------------------------
  2986. INT 21 - Novell NetWare - FILE SERVICES - SCAN FILE INFORMATION
  2987.     AH = E3h subfn 0Fh
  2988.     DS:SI -> request buffer (see below)
  2989.     ES:DI -> reply buffer (see below)
  2990. Return: AL = status
  2991.         00h successful
  2992.         89h not permitted to search directory
  2993.         FFh no more matching files
  2994. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2995. SeeAlso: AH=B6h,AH=E3h/SF=10h
  2996.  
  2997. Format of request buffer:
  2998. Offset    Size    Description
  2999.  00h    WORD    length of following data (max 105h)
  3000.  02h    BYTE    0Fh (subfunction "Scan File Information")
  3001.  03h    WORD    (big-endian) sequence number
  3002.         FFFFh on first call
  3003.  05h    BYTE    directory handle or 00h
  3004.  06h    BYTE    search attributes (see AX=4301h)
  3005.  07h    BYTE    length of filespec
  3006.  08h  N BYTEs    ASCIZ uppercase filespec
  3007.  
  3008. Format of reply buffer:
  3009. Offset    Size    Description
  3010.  00h    WORD    (call) 005Eh (size of following results buffer)
  3011.  02h    WORD    next sequence number (place in request buffer for next call)
  3012.  04h 14 BYTEs    ASCIZ filename
  3013.  12h    BYTE    file attributes (see AX=4301h for format)
  3014.  13h    BYTE    extended file attributes (see AH=B6h for format)
  3015.  14h    DWORD    (big-endian) file size in bytes
  3016.  18h    WORD    (big-endian) file's creation date (see AX=5700h for format)
  3017.  1Ah    WORD    (big-endian) date of last access (see AX=5700h for format)
  3018.  1Ch    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3019.  20h    DWORD    (big-endian) object ID of owner
  3020.  24h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3021.  28h 55 BYTEs    reserved
  3022. Note:    the official documentation erroneously lists the field at offset 04h as
  3023.       15 bytes and thus shifts the remaining fields by one byte
  3024. --------N-21E3--SF10-------------------------
  3025. INT 21 - Novell NetWare - FILE SERVICES - SET FILE INFORMATION
  3026.     AH = E3h subfn 10h
  3027.     DS:SI -> request buffer (see below)
  3028.     ES:DI -> reply buffer (see below)
  3029. Return: AL = status
  3030.         00h successful
  3031. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3032.     the caller must have modify privileges on the directory containing the
  3033.       file
  3034. SeeAlso: AH=B6h,AH=E3h/SF=0Fh
  3035.  
  3036. Format of request buffer:
  3037. Offset    Size    Description
  3038.  00h    WORD    length of following data (max 151h)
  3039.  02h    BYTE    10h (subfunction "Set File Information")
  3040.  03h    BYTE    file attributes (see AX=4301h for format)
  3041.  04h    BYTE    extended file attributes (see AH=B6h for format)
  3042.  05h  4 BYTEs    reserved
  3043.  09h    WORD    (big-endian) file's creation date (see AX=5700h for format)
  3044.  0Bh    WORD    (big-endian) date of last access (see AX=5700h for format)
  3045.  0Dh    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3046.  11h    DWORD    (big-endian) object ID of owner
  3047.  15h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3048.  19h 56 BYTEs    reserved
  3049.  51h    BYTE    directory handle or 00h
  3050.  52h    BYTE    search attributes (see AX=4301h for format)
  3051.  53h    BYTE    length of filename
  3052.  54h  N BYTEs    filename
  3053. Format of reply buffer:
  3054. Offset    Size    Description
  3055.  00h    WORD    (call) 0000h (no results returned)
  3056. --------N-21E3--SF11-------------------------
  3057. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER INFORMATION
  3058.     AH = E3h subfn 11h
  3059.     DS:SI -> request buffer (see below)
  3060.     ES:DI -> reply buffer (see below)
  3061. Return: AL = status
  3062.         00h successful
  3063. Desc:    determine the version of software installed on the file server and
  3064.       how it is configured
  3065. Note:    this function is supported by Advanced NetWare 2.1+
  3066. SeeAlso: AH=E3h/SF=0Eh,AE3h/SF=12h,AH=E3h/SF=CDh,AH=E3h/SF=D3h,AH=E3h/SF=E7h
  3067. SeeAlso: AH=E7h
  3068.  
  3069. Format of request buffer:
  3070. Offset    Size    Description
  3071.  00h    WORD    0001h (length of following data)
  3072.  02h    BYTE    11h (subfunction "Get File Server Information")
  3073.  
  3074. Format of reply buffer:
  3075. Offset    Size    Description
  3076.  00h    WORD    (call) 0080h (size of following results buffer)
  3077.  02h 48 BYTEs    server's name
  3078.  32h    BYTE    NetWare version
  3079.  33h    BYTE    NetWare subversion (0-99)
  3080.  34h    WORD    (big-endian) number of connections supported
  3081.  36h    WORD    (big-endian) number of connections in use
  3082.  38h    WORD    (big-endian) maximum connected volumes
  3083. ---Advanced NetWare 2.1+ ---
  3084.  3Ah    BYTE    operating system revision number
  3085.  3Bh    BYTE    fault tolerance (SFT) level
  3086.  3Ch    BYTE    TTS level
  3087.  3Dh    WORD    (big-endian) maximum simultaneously-used connections
  3088.  3Fh    BYTE    accounting version
  3089.  40h    BYTE    VAP version
  3090.  41h    BYTE    queueing version
  3091.  42h    BYTE    print server version
  3092.  43h    BYTE    virtual console version
  3093.  44h    BYTE    security restrictions level
  3094.  45h    BYTE    internetwork bridge version
  3095.  46h 60 BYTEs    reserved
  3096. --------N-21E3--SF12--------------------
  3097. INT 21 - Novell NetWare - GET SERIAL NUMBER
  3098.     AH = E3h subfn 12h
  3099.     AL = 00h
  3100.     BX = CX = DX = 0000h
  3101.     DS:SI -> request buffer (see below)
  3102.     ES:DI -> reply buffer (see below)
  3103. Return: AL = status
  3104.         00h successful
  3105. Desc:    return the serial number and application number for the software
  3106.       installed on the file server
  3107. Notes:    this function is supported by Advanced Netware 2.1+
  3108.     reportedly, the workstation crashes if AL,BX,CX, and DX are not all
  3109.       zero
  3110. SeeAlso: AH=E3h/SF=0Ch,AH=E3h/SF=11h
  3111.  
  3112. Format of request buffer:
  3113. offset     size    description
  3114.  00h     WORD    0001h (length of following data)
  3115.  02h     BYTE    12h (subfunction "Get Serial Number")
  3116.  
  3117. Format of reply buffer:
  3118. offset     size    description
  3119.  00h     WORD    (call) 0006h (size of following results buffer)
  3120.  02h   4 BYTEs    (big-endian) Netware software serial number
  3121.  06h   2 BYTEs    (big-endian) Netware software application number
  3122. --------N-21E3--SF13-------------------------
  3123. INT 21 - Novell NetWare - CONNECTION SERVICES - GET INTERNET ADDRESS
  3124.     AH = E3h subfn 13h
  3125.     DS:SI -> request buffer (see below)
  3126.     ES:DI -> reply buffer (see below)
  3127. Return: AL = status
  3128.         00h successful
  3129. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3130. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h,AH=EEh"NetWare"
  3131.  
  3132. Format of request buffer:
  3133. Offset    Size    Description
  3134.  00h    WORD    0002h (length of following data)
  3135.  02h    BYTE    13h (subfunction "Get Internet Address")
  3136.  03h    BYTE    logical connection number (01h-64h)
  3137.  
  3138. Format of reply buffer:
  3139. Offset    Size    Description
  3140.  00h    WORD    (call) 000Ch (length of following results buffer)
  3141.  02h  4 BYTEs    network number
  3142.  06h  6 BYTEs    physical node address
  3143.  0Ch  2 BYTEs    socket number
  3144. --------N-21E3--SF14-------------------------
  3145. INT 21 - Novell NetWare - CONNECTION SERVICES - LOGIN TO FILE SERVER
  3146.     AH = E3h subfn 14h
  3147.     DS:SI -> request buffer (see below)
  3148.     ES:DI -> reply buffer (see below)
  3149. Return: AL = status
  3150.         00h successful
  3151. Desc:    this function retrieves a list indicating the connection numbers under
  3152.       which a bindery object is logged into the default file server
  3153. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3154. SeeAlso: AH=D7h"NetWare",AH=F1h"NetWare"
  3155.  
  3156. Format of request buffer:
  3157. Offset    Size    Description
  3158.  00h    WORD    length of following data (max B3h)
  3159.  02h    BYTE    14h (subfunction "Login To File Server")
  3160.  03h    WORD    (big-endian) type of object
  3161.  05h    BYTE    length of object's name (01h-2Fh)
  3162.  06h  N BYTEs    object's name
  3163.     BYTE    length of password
  3164.       N BYTEs    password
  3165.  
  3166. Format of reply buffer:
  3167. Offset    Size    Description
  3168.  00h    WORD    (call) 0000h (no data returned)
  3169. --------N-21E3--SF15-------------------------
  3170. INT 21 - Novell NetWare - CONNECTION SERVICES - GET OBJECT CONNECTION NUMBERS
  3171.     AH = E3h subfn 15h
  3172.     DS:SI -> request buffer (see below)
  3173.     ES:DI -> reply buffer (see below)
  3174. Return: AL = status
  3175.         00h successful
  3176. Desc:    this function retrieves a list indicating the connection numbers under
  3177.       which a bindery object is logged into the default file server
  3178. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3179. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h
  3180.  
  3181. Format of request buffer:
  3182. Offset    Size    Description
  3183.  00h    WORD    length of following data (max 33h)
  3184.  02h    BYTE    15h (subfunction "Get Object Connection Numbers")
  3185.  03h    WORD    (big-endian) type of object
  3186.  05h    BYTE    length of object's name (01h-2Fh)
  3187.  06h  N BYTEs    object's name
  3188.  
  3189. Format of reply buffer:
  3190. Offset    Size    Description
  3191.  00h    WORD    (call) length of following results buffer (max 65h)
  3192.  02h    BYTE    number of connections
  3193.  03h  N BYTEs    connection list
  3194. --------N-21E3--SF16-------------------------
  3195. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION INFORMATION
  3196.     AH = E3h subfn 16h
  3197.     DS:SI -> request buffer (see below)
  3198.     ES:DI -> reply buffer (see below)
  3199. Return: AL = status
  3200.         00h successful
  3201. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3202. SeeAlso: AH=D7h,AH=DCh"NetWare",AH=E3h/SF=14h
  3203.  
  3204. Format of request buffer:
  3205. Offset    Size    Description
  3206.  00h    WORD    0002h (length of following data)
  3207.  02h    BYTE    16h (subfunction "Get Connection Information")
  3208.  03h    BYTE    logical connection number (01h-64h)
  3209.  
  3210. Format of reply buffer:
  3211. Offset    Size    Description
  3212.  00h    WORD    (call) 003Eh (length of following results buffer)
  3213.  02h    DWORD    (big-endian) object ID for object logged in on the connection
  3214.         00000000h if no object logged in
  3215.  06h    WORD    (big-endian) type of object
  3216.  08h 48 BYTEs    name of object
  3217.  38h  7 BYTEs    login time (see below)
  3218. Note:    much of the Novell documentation incorrectly states the reply buffer
  3219.       length as 3Fh instead of 40h, which corresponds to a results length
  3220.       of 3Dh (61) bytes instead of the correct 3Eh (62) bytes
  3221.  
  3222. Format of login time:
  3223. Offset    Size    Description
  3224.  00h    BYTE    year (80-99 = 1980-1999, 00-79 = 2000-2079)
  3225.  01h    BYTE    month (1-12)
  3226.  02h    BYTE    day (1-31)
  3227.  03h    BYTE    hour (0-23)
  3228.  04h    BYTE    minute (0-59)
  3229.  05h    BYTE    second (0-59)
  3230.  06h    BYTE    day of week (0 = Sunday)
  3231. --------N-21E3--SF32-------------------------
  3232. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE BINDERY OBJECT
  3233.     AH = E3h subfn 32h
  3234.     DS:SI -> request buffer (see below)
  3235.     ES:DI -> reply buffer (see below)
  3236. Return: AL = status (see below)
  3237. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3238. SeeAlso: AH=E3h/SF=33h,AH=E3h/SF=34h,AH=E3h/SF=38h,AH=E3h/SF=39h
  3239.  
  3240. Values for status:
  3241.  00h    successful
  3242.  96h    server out of memory
  3243.  EEh    object already exists
  3244.  EFh    invalid name
  3245.  F0h    wildcard not allowed
  3246.  F1h    invalid bindery security level
  3247.  F3h    not permitted to rename object
  3248.  F4h    not permitted to delete objects
  3249.  F5h    not permitted to create objects
  3250.  FCh    no such object
  3251.  FEh    server bindery locked
  3252.  FFh    bindery failure
  3253.  
  3254. Format of request buffer:
  3255. Offset    Size    Description
  3256.  00h    WORD    length of following data (max 35h)
  3257.  02h    BYTE    32h (subfunction "Create Bindery Object")
  3258.  03h    BYTE    object flag
  3259.         00h static
  3260.         01h dynamic
  3261.  04h    BYTE    object security levels
  3262.  05h    WORD    (big-endian) type of object
  3263.  07h    BYTE    length of object's name
  3264.  08h  N BYTEs    object's name
  3265.  
  3266. Format of reply buffer:
  3267. Offset    Size    Description
  3268.  00h    WORD    0000h (no data returned)
  3269. --------N-21E3--SF33-------------------------
  3270. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT
  3271.     AH = E3h subfn 33h
  3272.     DS:SI -> request buffer (see below)
  3273.     ES:DI -> reply buffer (see below)
  3274. Return: AL = status (see AH=E3h/SF=32h)
  3275. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3276. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=34h
  3277.  
  3278. Format of request buffer:
  3279. Offset    Size    Description
  3280.  00h    WORD    length of following data (max 33h)
  3281.  02h    BYTE    33h (subfunction "Delete Bindery Object")
  3282.  03h    WORD    (big-endian) type of object
  3283.  05h    BYTE    length of object's name (01h-2Fh)
  3284.  06h  N BYTEs    object's name
  3285.  
  3286. Format of reply buffer:
  3287. Offset    Size    Description
  3288.  00h    WORD    (call) 0000h (no data returned)
  3289. --------N-21E3--SF34-------------------------
  3290. INT 21 - Novell NetWare - BINDERY SERVICES - RENAME BINDERY OBJECT
  3291.     AH = E3h subfn 34h
  3292.     DS:SI -> request buffer (see below)
  3293.     ES:DI -> reply buffer (see below)
  3294. Return: AL = status (see AH=E3h/SF=32h)
  3295. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3296. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h
  3297.  
  3298. Format of request buffer:
  3299. Offset    Size    Description
  3300.  00h    WORD    length of following data (max 63h)
  3301.  02h    BYTE    34h (subfunction "Rename Bindery Object")
  3302.  03h    WORD    (big-endian) type of object
  3303.  05h    BYTE    length of object's name (01h-2Fh)
  3304.  06h  N BYTEs    object's name
  3305.     BYTE    length of new name (01h-2Fh)
  3306.       N BYTEs    new name
  3307.  
  3308. Format of reply buffer:
  3309. Offset    Size    Description
  3310.  00h    WORD    (call) 0000h (no data returned)
  3311. --------N-21E3--SF35-------------------------
  3312. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT ID
  3313.     AH = E3h subfn 35h
  3314.     DS:SI -> request buffer (see below)
  3315.     ES:DI -> reply buffer (see below)
  3316. Return: AL = status
  3317.         00h successful
  3318.         96h server out of memory
  3319.         FCh no such object
  3320.         FEh server bindery locked
  3321.         FFh bindery failure
  3322. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3323.     the requesting workstation must be logged into the file server with
  3324.       read access to the bindery object
  3325. SeeAlso: AH=E3h/SF=36h,AH=E3h/SF=44h
  3326.  
  3327. Format of request buffer:
  3328. Offset    Size    Description
  3329.  00h    WORD    length of following data (max 33h)
  3330.  02h    BYTE    35h (subfunction "Get Bindery Object ID")
  3331.  03h    WORD    (big-endian) type of object
  3332.  05h    BYTE    length of object's name
  3333.  06h  N BYTEs    object's name
  3334.  
  3335. Format of reply buffer:
  3336. Offset    Size    Description
  3337.  00h    WORD    (call) 0036h (length of following buffer space)
  3338.  02h    DWORD    (big-endian) object ID
  3339.  06h    WORD    (big-endian) type of object
  3340.  08h 48 BYTEs    object name
  3341. --------N-21E3--SF36-------------------------
  3342. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT NAME
  3343.     AH = E3h subfn 36h
  3344.     DS:SI -> request buffer (see below)
  3345.     ES:DI -> reply buffer (see below)
  3346. Return: AL = status (see below)
  3347. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3348.     the requesting workstation must be logged into the file server with
  3349.       read access to the bindery object
  3350. SeeAlso: AH=E3h/SF=35h,AH=E3h/SF=44h
  3351.  
  3352. Values for status:
  3353.  00h    successful
  3354.  96h    server out of memory
  3355.  EFh    invalid name
  3356.  F0h    wildcard not allowed
  3357.  FCh    no such object
  3358.  FEh    server bindery locked
  3359.  FFh    bindery failure
  3360.  
  3361. Format of request buffer:
  3362. Offset    Size    Description
  3363.  00h    WORD    0005h (length of following data)
  3364.  02h    BYTE    36h (subfunction "Get Bindery Object Name")
  3365.  03h    DWORD    (big-endian) object ID
  3366.  
  3367. Format of reply buffer:
  3368. Offset    Size    Description
  3369.  00h    WORD    (call) 0036h (length of following buffer space)
  3370.  02h    DWORD    (big-endian) object ID
  3371.  06h    WORD    (big-endian) type of object
  3372.  08h 48 BYTEs    object name
  3373. --------N-21E3--SF37-------------------------
  3374. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN BINDERY OBJECT
  3375.     AH = E3h subfn 37h
  3376.     DS:SI -> request buffer (see below)
  3377.     ES:DI -> reply buffer (see below)
  3378. Return: AL = status (see AH=E3h/SF=36h)
  3379. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3380.     the requesting workstation must be logged into the file server with
  3381.       read access to the bindery object
  3382. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h,AH=E3h/SF=38h,AH=E3h/SF=3Ch
  3383.  
  3384. Format of request buffer:
  3385. Offset    Size    Description
  3386.  00h    WORD    length of following data (max 37h)
  3387.  02h    BYTE    37h (subfunction "Scan Bindery Object")
  3388.  03h    DWORD    (big-endian) last object ID
  3389.  07h    WORD    (big-endian) type of object
  3390.  09h    BYTE    length of object's name
  3391.  0Ah  N BYTEs    object's name
  3392.  
  3393. Format of reply buffer:
  3394. Offset    Size    Description
  3395.  00h    WORD    (call) 0039h (length of following buffer space)
  3396.  02h    DWORD    (big-endian) object ID
  3397.         FFFFFFFFh for first call
  3398.  06h    WORD    (big-endian) type of object
  3399.  08h 48 BYTEs    object name (counted string)
  3400.  38h    BYTE    object flag (00h static, 01h dynamic)
  3401.  39h    BYTE    object's security levels
  3402.  3Ah    BYTE    object properties flag (00h no, FFh yes)
  3403. --------N-21E3--SF38-------------------------
  3404. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT SECURITY
  3405.     AH = E3h subfn 38h
  3406.     DS:SI -> request buffer (see below)
  3407.     ES:DI -> reply buffer (see below)
  3408. Return: AL = status
  3409.         00h successful
  3410.         96h server out of memory
  3411.         F0h wildcard not allowed
  3412.         F1h invalid bindery security level
  3413.         FBh no such property
  3414.         FCh no such object
  3415.         FEh server bindery locked
  3416.         FFh bindery failure
  3417. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3418. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3419.  
  3420. Format of request buffer:
  3421. Offset    Size    Description
  3422.  00h    WORD    length of following data (max 34h)
  3423.  02h    BYTE    38h (subfunction "Change Bindery Object Security")
  3424.  03h    BYTE    new security levels
  3425.  04h    WORD    (big-endian) type of object
  3426.  06h    BYTE    length of object's name (01h-2Fh)
  3427.  07h  N BYTEs    object name
  3428.  
  3429. Format of reply buffer:
  3430. Offset    Size    Description
  3431.  00h    WORD    (call) 0000h (no data returned)
  3432. --------N-21E3--SF39-------------------------
  3433. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE PROPERTY
  3434.     AH = E3h subfn 39h
  3435.     DS:SI -> request buffer (see below)
  3436.     ES:DI -> reply buffer (see below)
  3437. Return: AL = status (see below)
  3438. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3439. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3440.  
  3441. Values for status:
  3442.  00h    successful
  3443.  96h    server out of memory
  3444.  EDh    property already exists
  3445.  EFh    invalid name
  3446.  F0h    wildcard not allowed
  3447.  F1h    invalid bindery security level
  3448.  F6h    not permitted to delete properties
  3449.  F7h    not permitted to create properties
  3450.  FBh    no such property
  3451.  FCh    no such object
  3452.  FEh    server bindery locked
  3453.  FFh    bindery failure
  3454.  
  3455. Format of request buffer:
  3456. Offset    Size    Description
  3457.  00h    WORD    length of following data (max 45h)
  3458.  02h    BYTE    39h (subfunction "Create Property")
  3459.  03h    WORD    (big-endian) type of object
  3460.  05h    BYTE    length of object's name (01h-2Fh)
  3461.  06h  N BYTEs    object's name
  3462.     BYTE    property flags
  3463.     BYTE    property security levels
  3464.     BYTE    length of property's name (01h-0Fh)
  3465.       N BYTEs    property's name
  3466.  
  3467. Format of reply buffer:
  3468. Offset    Size    Description
  3469.  00h    WORD    (call) 0000h (no data returned)
  3470. --------N-21E3--SF3A-------------------------
  3471. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE PROPERTY
  3472.     AH = E3h subfn 3Ah
  3473.     DS:SI -> request buffer (see below)
  3474.     ES:DI -> reply buffer (see below)
  3475. Return: AL = status (see AH=E3h/SF=39h)
  3476. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3477. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=39h
  3478.  
  3479. Format of request buffer:
  3480. Offset    Size    Description
  3481.  00h    WORD    length of following data (max 43h)
  3482.  02h    BYTE    3Ah (subfunction "Delete Property")
  3483.  03h    WORD    (big-endian) type of object
  3484.  05h    BYTE    length of object's name (01h-2Fh)
  3485.  06h  N BYTEs    object's name
  3486.     BYTE    length of property's name (01h-0Fh)
  3487.       N BYTEs    property's name
  3488.  
  3489. Format of reply buffer:
  3490. Offset    Size    Description
  3491.  00h    WORD    (call) 0000h (no data returned)
  3492. --------N-21E3--SF3B-------------------------
  3493. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE PROPERTY SECURITY
  3494.     AH = E3h subfn 3Bh
  3495.     DS:SI -> request buffer (see below)
  3496.     ES:DI -> reply buffer (see below)
  3497. Return: AL = status
  3498.         00h successful
  3499.         96h server out of memory
  3500.         F0h wildcard not allowed
  3501.         F1h invalid bindery security level
  3502.         FBh no such property
  3503.         FCh no such object
  3504.         FEh server bindery locked
  3505.         FFh bindery failure
  3506. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3507. SeeAlso: AH=E3h/SF=38h
  3508.  
  3509. Format of request buffer:
  3510. Offset    Size    Description
  3511.  00h    WORD    length of following data (max 44h)
  3512.  02h    BYTE    3Bh (subfunction "Change Property Security")
  3513.  03h    WORD    (big-endian) type of object
  3514.  05h    BYTE    length of object's name (01h-2Fh)
  3515.  06h  N BYTEs    object name
  3516.     BYTE    new property security levels
  3517.     BYTE    length of property's name
  3518.       N BYTEs    property name
  3519.  
  3520. Format of reply buffer:
  3521. Offset    Size    Description
  3522.  00h    WORD    (call) 0000h (no data returned)
  3523. --------N-21E3--SF3C-------------------------
  3524. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN PROPERTY
  3525.     AH = E3h subfn 3Ch
  3526.     DS:SI -> request buffer (see below)
  3527.     ES:DI -> reply buffer (see below)
  3528. Return: AL = status (see below)
  3529. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3530. SeeAlso: AH=E3h/SF=37h,AH=E3h/SF=3Bh
  3531.  
  3532. Values for status:
  3533.  00h    successful
  3534.  96h    server out of memory
  3535.  F1h    invalid bindery security level
  3536.  FBh    no such property
  3537.  FCh    no such object
  3538.  FEh    server bindery locked
  3539.  FFh    bindery failure
  3540.  
  3541. Format of request buffer:
  3542. Offset    Size    Description
  3543.  00h    WORD    length of following data (max 47h)
  3544.  02h    BYTE    3Ch (subfunction "Scan Property")
  3545.  03h    WORD    (big-endian) type of object
  3546.  05h    BYTE    length of object's name (01h-2Fh)
  3547.  06h  N BYTEs    object name
  3548.     DWORD    (big-endian) sequence number
  3549.         FFFFFFFFh for first call
  3550.     BYTE    length of property's name (01h-0Fh)
  3551.       N BYTEs    property's name
  3552.  
  3553. Format of reply buffer:
  3554. Offset    Size    Description
  3555.  00h    WORD    (call) 0018h (length of following results buffer)
  3556.  02h 16 BYTEs    property name
  3557.  12h    BYTE    property flags
  3558.  13h    BYTE    property security levels
  3559.  14h    DWORD    (big-endian) sequence number
  3560.  18h    BYTE    property value flag (00h no, FFh yes)
  3561.  19h    BYTE    more properties (00h no, FFh yes)
  3562. --------N-21E3--SF3D-------------------------
  3563. INT 21 - Novell NetWare - BINDERY SERVICES - READ PROPERTY VALUE
  3564.     AH = E3h subfn 3Dh
  3565.     DS:SI -> request buffer (see below)
  3566.     ES:DI -> reply buffer (see below)
  3567. Return: AL = status (see below)
  3568. Desc:    retrieve one 128-byte segment of the specified property's value
  3569. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3570. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3571.  
  3572. Values for status:
  3573.  00h    successful
  3574.  96h    server out of memory
  3575.  E8h    not item property
  3576.  ECh    no such segment
  3577.  F0h    wildcard not allowed
  3578.  F1h    invalid bindery security level
  3579.  F8h    not permitted to write property
  3580.  F9h    not permitted to read property
  3581.  FBh    no such property
  3582.  FCh    no such object
  3583.  FEh    server bindery locked
  3584.  FFh    bindery failure
  3585.  
  3586. Format of request buffer:
  3587. Offset    Size    Description
  3588.  00h    WORD    length of following data (max 44h)
  3589.  02h    BYTE    3Dh (subfunction "Read Property Value")
  3590.  03h    WORD    (big-endian) type of object
  3591.  05h    BYTE    length of object's name (01h-2Fh)
  3592.  06h  N BYTEs    object name
  3593.     BYTE    segment number (01h on first call, increment until done)
  3594.     BYTE    length of property's name (01h-0Fh)
  3595.       N BYTEs    property name
  3596.  
  3597. Format of reply buffer:
  3598. Offset    Size    Description
  3599.  00h    WORD    (call) 0082h (length of following results buffer)
  3600.  02h 128 BYTEs    property's value
  3601.  82h    BYTE    more segments (00h no, FFh yes)
  3602.  83h    BYTE    property's flags
  3603. --------N-21E3--SF3E-------------------------
  3604. INT 21 - Novell NetWare - BINDERY SERVICES - WRITE PROPERTY VALUE
  3605.     AH = E3h subfn 3Eh
  3606.     DS:SI -> request buffer (see below)
  3607.     ES:DI -> reply buffer (see below)
  3608. Return: AL = status (see AH=E3h/SF=3Dh)
  3609. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3610. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3611.  
  3612. Format of request buffer:
  3613. Offset    Size    Description
  3614.  00h    WORD    length of following data (max C5h)
  3615.  02h    BYTE    3Eh (subfunction "Write Property Value")
  3616.  03h    WORD    (big-endian) type of object
  3617.  05h    BYTE    length of object's name (01h-2Fh)
  3618.  06h  N BYTEs    object name
  3619.     BYTE    segment number (01h on first call, increment until done)
  3620.     BYTE    erase remaining segments (00h no, FFh yes)
  3621.     BYTE    length of property's name (01h-0Fh)
  3622.       N BYTEs    property name
  3623.     128 BYTEs    property value segment
  3624.  
  3625. Format of reply buffer:
  3626. Offset    Size    Description
  3627.  00h    WORD    (call) 0000h (no data returned)
  3628. --------N-21E3--SF3F-------------------------
  3629. INT 21 - Novell NetWare - BINDERY SERVICES - VERIFY BINDERY OBJECT PASSWORD
  3630.     AH = E3h subfn 3Fh
  3631.     DS:SI -> request buffer (see below)
  3632.     ES:DI -> reply buffer (see below)
  3633. Return: AL = status (see below)
  3634. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3635. SeeAlso: AH=E3h/SF=40h
  3636.  
  3637. Values for status:
  3638.  00h    successful
  3639.  96h    server out of memory
  3640.  F0h    wildcard not allowed
  3641.  FBh    no such property
  3642.  FCh    no such object
  3643.  FEh    server bindery locked
  3644.  FFh    bindery failure: no such object, bad password, no password for object,
  3645.             or invalid old password
  3646.  
  3647. Format of request buffer:
  3648. Offset    Size    Description
  3649.  00h    WORD    length of following data (max 133h)
  3650.  02h    BYTE    3Fh (subfunction "Verify Bindery Object Password")
  3651.  03h    WORD    (big-endian) type of object
  3652.  05h    BYTE    length of object's name (01h-2Fh)
  3653.  06h  N BYTEs    object name
  3654.     BYTE    length of password (00h-7Fh)
  3655.       N BYTEs    password
  3656.  
  3657. Format of reply buffer:
  3658. Offset    Size    Description
  3659.  00h    WORD    (call) 0000h (no data returned)
  3660. --------N-21E3--SF40-------------------------
  3661. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT PASSWORD
  3662.     AH = E3h subfn 40h
  3663.     DS:SI -> request buffer (see below)
  3664.     ES:DI -> reply buffer (see below)
  3665. Return: AL = status (see AH=E3h/SF=3Fh)
  3666. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3667. SeeAlso: AH=E3h/SF=3Fh,AH=E3h/SF=41h
  3668.  
  3669. Format of request buffer:
  3670. Offset    Size    Description
  3671.  00h    WORD    length of following data (max 133h)
  3672.  02h    BYTE    40h (subfunction "Change Bindery Object Password")
  3673.  03h    WORD    (big-endian) type of object
  3674.  05h    BYTE    length of object's name (01h-2Fh)
  3675.  06h  N BYTEs    object name
  3676.     BYTE    length of old password (00h-7Fh)
  3677.       N BYTEs    old password
  3678.     BYTE    length of new password (00h-7Fh)
  3679.       N BYTEs    new password
  3680.  
  3681. Format of reply buffer:
  3682. Offset    Size    Description
  3683.  00h    WORD    (call) 0000h (no data returned)
  3684. --------N-21E3--SF41-------------------------
  3685. INT 21 - Novell NetWare - BINDERY SERVICES - ADD BINDERY OBJECT TO SET
  3686.     AH = E3h subfn 41h
  3687.     DS:SI -> request buffer (see below)
  3688.     ES:DI -> reply buffer (see below)
  3689. Return: AL = status (see below)
  3690. Desc:    add the specified object to a set property
  3691. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3692. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3693.  
  3694. Values for status:
  3695.  00h    successful
  3696.  96h    server out of memory
  3697.  E9h    member already exists
  3698.  EAh    member does not exist
  3699.  EBh    not a group property
  3700.  F0h    wildcard not allowed
  3701.  F8h    can't write property
  3702.  F9h    not permitted to read property
  3703.  FBh    no such property
  3704.  FCh    no such object
  3705.  FEh    server bindery locked
  3706.  FFh    bindery failure
  3707.  
  3708. Format of request buffer:
  3709. Offset    Size    Description
  3710.  00h    WORD    length of following data (max 75h)
  3711.  02h    BYTE    41h (subfunction "Add Bindery Object to Set")
  3712.  03h    WORD    (big-endian) type of object
  3713.  05h    BYTE    length of object's name
  3714.  06h  N BYTEs    object name
  3715.     BYTE    length of property name (01h-0Fh)
  3716.       N BYTEs    property name
  3717.     WORD    (big-endian) type of member object
  3718.     BYTE    length of member object's name
  3719.       N BYTEs    member object's name
  3720.  
  3721. Format of reply buffer:
  3722. Offset    Size    Description
  3723.  00h    WORD    (call) 0000h (no data returned)
  3724. --------N-21E3--SF42-------------------------
  3725. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT FROM SET
  3726.     AH = E3h subfn 42h
  3727.     DS:SI -> request buffer (see below)
  3728.     ES:DI -> reply buffer (see below)
  3729. Return: AL = status (see AH=E3h/SF=41h)
  3730. Desc:    delete the specified object from a set property
  3731. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3732. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3733.  
  3734. Format of request buffer:
  3735. Offset    Size    Description
  3736.  00h    WORD    length of following data (max 75h)
  3737.  02h    BYTE    42h (subfunction "Delete Bindery Object from Set")
  3738.  03h    WORD    (big-endian) type of object
  3739.  05h    BYTE    length of object's name
  3740.  06h  N BYTEs    object name
  3741.     BYTE    length of property name (01h-0Fh)
  3742.       N BYTEs    property name
  3743.     WORD    (big-endian) type of member object
  3744.     BYTE    length of member object's name
  3745.       N BYTEs    member object's name
  3746.  
  3747. Format of reply buffer:
  3748. Offset    Size    Description
  3749.  00h    WORD    (call) 0000h (no data returned)
  3750. --------N-21E3--SF43-------------------------
  3751. INT 21 - Novell NetWare - BINDERY SERVICES - IS BINDERY OBJECT IN SET
  3752.     AH = E3h subfn 43h
  3753.     DS:SI -> request buffer (see below)
  3754.     ES:DI -> reply buffer (see below)
  3755. Return: AL = status (see AH=E3h/SF=41h)
  3756. Desc:    determine whether the specified object is a member of the given set
  3757.       property
  3758. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3759.     the caller must have read access to the property
  3760. SeeAlso: AH=E3h/SF=41h,AH=E3h/SF=42h
  3761.  
  3762. Format of request buffer:
  3763. Offset    Size    Description
  3764.  00h    WORD    length of following data (max 75h)
  3765.  02h    BYTE    43h (subfunction "Is Bindery Object In Set")
  3766.  03h    WORD    (big-endian) type of object
  3767.  05h    BYTE    length of object's name
  3768.  06h  N BYTEs    object's name
  3769.     BYTE    length of property's name
  3770.       N BYTEs    property's name
  3771.     WORD    (big-endian) type of member object
  3772.     BYTE    length of member object's name
  3773.       N BYTEs    member object's name
  3774.  
  3775. Format of reply buffer:
  3776. Offset    Size    Description
  3777.  00h    WORD    (call) 0000h (no data returned)
  3778. --------N-21E3--SF44-------------------------
  3779. INT 21 - Novell NetWare - BINDERY SERVICES - CLOSE BINDERY
  3780.     AH = E3h subfn 44h
  3781.     DS:SI -> request buffer (see below)
  3782.     ES:DI -> reply buffer (see below)
  3783. Return: AL = status
  3784.         00h successful
  3785. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3786. SeeAlso: AH=E3h/SF=45h
  3787.  
  3788. Format of request buffer:
  3789. Offset    Size    Description
  3790.  00h    WORD    0001h (length of following data)
  3791.  02h    BYTE    44h (subfunction "Close Bindery")
  3792.  
  3793. Format of reply buffer:
  3794. Offset    Size    Description
  3795.  00h    WORD    (call) 0000h (no data returned)
  3796. --------N-21E3--SF45-------------------------
  3797. INT 21 - Novell NetWare - BINDERY SERVICES - OPEN BINDERY
  3798.     AH = E3h subfn 45h
  3799.     DS:SI -> request buffer (see below)
  3800.     ES:DI -> reply buffer (see below)
  3801. Return: AL = status
  3802.         00h successful
  3803. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3804.     the bindery may only be opened by the supervisor or an object with
  3805.       equivalent privileges
  3806. SeeAlso: AH=E3h/SF=44h
  3807.  
  3808. Format of request buffer:
  3809. Offset    Size    Description
  3810.  00h    WORD    0001h (length of following data)
  3811.  02h    BYTE    45h (subfunction "Open Bindery")
  3812.  
  3813. Format of reply buffer:
  3814. Offset    Size    Description
  3815.  00h    WORD    (call) 0000h (no data returned)
  3816. --------N-21E3--SF46-------------------------
  3817. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY ACCESS LEVEL
  3818.     AH = E3h subfn 46h
  3819.     DS:SI -> request buffer (see below)
  3820.     ES:DI -> reply buffer (see below)
  3821. Return: AL = status
  3822.         00h successful
  3823. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3824.  
  3825. Format of request buffer:
  3826. Offset    Size    Description
  3827.  00h    WORD    0001h (length of following data)
  3828.  02h    BYTE    46h (subfunction "Get Bindery Access Level")
  3829.  
  3830. Format of reply buffer:
  3831. Offset    Size    Description
  3832.  00h    WORD    0005h (length of following buffer)
  3833.  02h    BYTE    security levels
  3834.  03h    DWORD    (big-endian) object ID
  3835. --------N-21E3--SF47-------------------------
  3836. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN BINDERY OBJ TRUSTEE PATHS
  3837.     AH = E3h subfn 47h
  3838.     DS:SI -> request buffer (see below)
  3839.     ES:DI -> reply buffer (see below)
  3840. Return: AL = status
  3841.         00h successful
  3842.         96h server out of memory
  3843.         F0h wildcard not allowed
  3844.         F1h invalid bindery security level
  3845.         FCh no such object
  3846.         FEh server bindery locked
  3847.         FFh bindery failure
  3848. Desc:    iterate through the directories to which an object is a trustee
  3849. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3850. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh,AH=E2h/SF=0Eh
  3851.  
  3852. Format of request buffer:
  3853. Offset    Size    Description
  3854.  00h    WORD    0008h (length of following data)
  3855.  02h    BYTE    47h (subfunction "Scan Bindery Object Trustee Paths")
  3856.  03h    BYTE    volume number (00h-1Fh)
  3857.  04h    WORD    (big-endian) last sequence number (00h on first call)
  3858.  06h    DWORD    (big-endian) object ID
  3859.  
  3860. Format of reply buffer:
  3861. Offset    Size    Description
  3862.  00h    WORD    (call) length of following results buffer (max 107h)
  3863.  02h    WORD    (big-endian) next sequence number
  3864.  04h    DWORD    (big-endian) object ID
  3865.  08h    BYTE    trustee directory rights (see AH=E2h/SF=03h)
  3866.  09h    BYTE    length fo trustee path
  3867.  0Ah  N BYTEs    trustee path
  3868. --------N-21E3--SF64-------------------------
  3869. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE
  3870.     AH = E3h subfn 64h
  3871.     DS:SI -> request buffer (see below)
  3872.     ES:DI -> reply buffer (see below)
  3873. Return: AL = status (00h,96h,99h,9Bh,9Ch,EDh-F1h,F5h,F7h,FCh,FEh,FFh)
  3874.         (see below)
  3875. Notes:    this function is supported by Advanced NetWare 2.1+
  3876.     caller must be on a workstation with supervisor privileges
  3877. SeeAlso: AH=E3h/SF=65h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Bh
  3878.  
  3879. Values for status:
  3880.  00h    successful
  3881.  96h    server out of memory
  3882.  99h    directory full
  3883.  9Bh    invalid directory handle
  3884.  9Ch    invalid path
  3885.  D0h    queue error
  3886.  D1h    no such queue
  3887.  D2h    no server for queue
  3888.  D3h    no queue rights
  3889.  D4h    queue full
  3890.  D5h    no queue job
  3891.  D6h    no job rights
  3892.  D7h    queue servicing error
  3893.  D9h    station is not a server
  3894.  DAh    queue halted
  3895.  DBh    too many queue servers
  3896.  EDh    property already exists
  3897.  EEh    object already exists
  3898.  EFh    invalid name
  3899.  F0h    wildcard not allowed
  3900.  F1h    invalid bindery security level
  3901.  F5h    not permitted to create object
  3902.  F7h    not permitted to create property
  3903.  FCh    no such object
  3904.  FEh    server bindery locked
  3905.  FFh    bindery failure
  3906.  
  3907. Format of request buffer:
  3908. Offset    Size    Description
  3909.  00h    WORD    length of following data (max ABh)
  3910.  02h    BYTE    64h (subfunction "Create Queue")
  3911.  03h    WORD    (big-endian) queue type
  3912.  05h    BYTE    length of queue's name (01h-2Fh)
  3913.  06h  N BYTEs    queue's name
  3914.     BYTE    directory handle or 00h
  3915.     BYTE    length of path name (01h-76h)
  3916.       N BYTEs    path name of directory in which to create queue subdirectory
  3917.  
  3918. Format of reply buffer:
  3919. Offset    Size    Description
  3920.  00h    WORD    (call) 0004h (size of following results buffer)
  3921.  02h    DWORD    (big-endian) object ID of queue
  3922. --------N-21E3--SF65-------------------------
  3923. INT 21 - Novell NetWare - QUEUE SERVICES - DESTROY QUEUE
  3924.     AH = E3h subfn 65h
  3925.     DS:SI -> request buffer (see below)
  3926.     ES:DI -> reply buffer (see below)
  3927. Return: AL = status (00h,96h,9Ch,D0h,D1h,FFh) (see also AH=E3h/SF=64h)
  3928.         FFh hardware failure
  3929. Desc:    abort all active jobs, detach all job servers, remove all job entries,
  3930.       delete all job files, remove the queue object and its properties
  3931.       from the bindery, and delete the queue's subdirectory
  3932. Notes:    this function is supported by Advanced NetWare 2.1+
  3933.     caller must have SUPERVISOR privileges
  3934. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=70h
  3935.  
  3936. Format of request buffer:
  3937. Offset    Size    Description
  3938.  00h    WORD    0005h (length of following data)
  3939.  02h    BYTE    65h (subfunction "Destroy Queue")
  3940.  03h    DWORD    (big-endian) object ID of queue
  3941.  
  3942. Format of reply buffer:
  3943. Offset    Size    Description
  3944.  00h    WORD    (call) 0000h (no results returned)
  3945. --------N-21E3--SF66-------------------------
  3946. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE CURRENT STATUS
  3947.     AH = E3h subfn 66h
  3948.     DS:SI -> request buffer (see below)
  3949.     ES:DI -> reply buffer (see below)
  3950. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  3951. Notes:    this function is supported by Advanced NetWare 2.1+
  3952.     caller must be on a workstation which is security-equivalent to a
  3953.       member of the queue's Q_USERS or Q_OPERATORS properties
  3954. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=67h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3955.  
  3956. Format of request buffer:
  3957. Offset    Size    Description
  3958.  00h    WORD    0005h (length of following data)
  3959.  02h    BYTE    66h (subfunction "Read Queue Current Status")
  3960.  03h    DWORD    (big-endian) object ID of queue
  3961.  
  3962. Format of reply buffer:
  3963. Offset    Size    Description
  3964.  00h    WORD    (call) 0085h (size of following results)
  3965.  02h    DWORD    (big-endian) object ID of queue
  3966.  06h    BYTE    status of queue
  3967.         bit 0: operator disabled addition of new jobs
  3968.         bit 1: operator refuses additional job servers attaching
  3969.         bit 2: operator disabled job servicing
  3970.  07h    BYTE    number of jobs in queue (00h-FAh)
  3971.  08h    BYTE    number of servers attached to queue (00h-19h)
  3972.  09h 25 DWORDs    list of object IDs of attached servers
  3973.  6Dh 25 BYTEs    list of attached servers' stations
  3974.  86h    BYTE    (call) maximum number of servers to return
  3975. --------N-21E3--SF67-------------------------
  3976. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE CURRENT STATUS
  3977.     AH = E3h subfn 67h
  3978.     DS:SI -> request buffer (see below)
  3979.     ES:DI -> reply buffer (see below)
  3980. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,FEh,FFh) (see AH=E3h/SF=64h)
  3981. Notes:    this function is supported by Advanced NetWare 2.1+
  3982.     caller must have operator privileges
  3983. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3984.  
  3985. Format of request buffer:
  3986. Offset    Size    Description
  3987.  00h    WORD    0006h (length of following data)
  3988.  02h    BYTE    67h (subfunction "Set Queue Current Status")
  3989.  03h    DWORD    (big-endian) object ID of queue
  3990.  07h    BYTE    queue status
  3991.         bit 0: operator disabled addition of new jobs
  3992.         bit 1: operator refuses additional job servers attaching
  3993.         bit 2: operator disabled job servicing
  3994.  
  3995. Format of reply buffer:
  3996. Offset    Size    Description
  3997.  00h    WORD    (call) 0000h (no results returned)
  3998. --------N-21E3--SF68-------------------------
  3999. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE JOB AND FILE
  4000.     AH = E3h subfn 68h
  4001.     DS:SI -> request buffer (see below)
  4002.     ES:DI -> reply buffer (see below)
  4003. Return: AL = status (00h,96h,99h,9Ch,D0h-D4h,DAh,EDh,EFh-F1h,F7h,FCh,FEh,FFh)
  4004.         (see AH=E3h/SF=64h)
  4005. Notes:    this function is supported by Advanced NetWare 2.1+
  4006.     caller must be on a workstation which is security-equivalent to a
  4007.       member of the queue's Q_USER property
  4008. SeeAlso: AH=E0h"SPOOLING",AH=E3h/SF=69h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4009.  
  4010. Format of request buffer:
  4011. Offset    Size    Description
  4012.  00h    WORD    0107h (length of following data)
  4013.  02h    BYTE    68h (subfunction "Close File and Start Queue Job")
  4014.  03h    DWORD    (big-endian) object ID of queue
  4015.  07h    BYTE    client station
  4016.  08h    BYTE    client task number
  4017.  09h    DWORD    (big-endian) object ID of client
  4018.  0Dh    DWORD    (big-endian) object ID of target server
  4019.         FFFFFFFh if any server acceptable
  4020.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4021.         FFFFFFFFFFFFh to execute as soon as possible
  4022.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4023.  1Dh    WORD    (big-endian) job number
  4024.  1Fh    WORD    (big-endian) job type
  4025.  21h    BYTE    job position
  4026.  22h    BYTE    job control flags
  4027.  23h 14 BYTEs    ASCIZ job file name
  4028.  31h  6 BYTEs    job file handle
  4029.  37h    BYTE    server station
  4030.  38h    BYTE    server task number
  4031.  39h    DWORD    (big-endian) object ID of server
  4032.  3Dh 50 BYTEs    ASCIZ job description string
  4033.  6Fh 152 BYTEs    client record area
  4034.  
  4035. Format of reply buffer:
  4036. Offset    Size    Description
  4037.  00h    WORD    (call) 0036h (size of following results buffer)
  4038.  02h    BYTE    client station
  4039.  03h    BYTE    client task number
  4040.  04h    DWORD    (big-endian) object ID of client
  4041.  08h    DWORD    (big-endian) object ID of target server
  4042.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4043.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4044.  18h    WORD    (big-endian) job number
  4045.  1Ah    WORD    (big-endian) job type
  4046.  1Ch    BYTE    job position
  4047.  1Dh    BYTE    job control flags
  4048.  1Eh 14 BYTEs    ASCIZ job file name
  4049.  2Ch  6 BYTEs    job file handle
  4050.  32h    BYTE    server station
  4051.  33h    BYTE    server task number
  4052.  34h    DWORD    (big-endian) object ID of server or 00000000h
  4053. --------N-21E3--SF69-------------------------
  4054. INT 21 - Novell NetWare - QUEUE SERVICES - CLOSE FILE AND START QUEUE JOB
  4055.     AH = E3h subfn 69h
  4056.     DS:SI -> request buffer (see below)
  4057.     ES:DI -> reply buffer (see below)
  4058. Return: AL = status (00h,96h,D0h,D1h,D3h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4059. Notes:    this function is supported by Advanced NetWare 2.1+
  4060.     caller must be on the workstation which created the job
  4061. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4062.  
  4063. Format of request buffer:
  4064. Offset    Size    Description
  4065.  00h    WORD    0007h (length of following data)
  4066.  02h    BYTE    69h (subfunction "Close File and Start Queue Job")
  4067.  03h    DWORD    (big-endian) object ID of queue
  4068.  07h    WORD    (big-endian) job number
  4069.  
  4070. Format of reply buffer:
  4071. Offset    Size    Description
  4072.  00h    WORD    (call) 0000h (no results returned)
  4073. --------N-21E3--SF6A-------------------------
  4074. INT 21 - Novell NetWare - QUEUE SERVICES - REMOVE JOB FROM QUEUE
  4075.     AH = E3h subfn 6Ah
  4076.     DS:SI -> request buffer (see below)
  4077.     ES:DI -> reply buffer (see below)
  4078. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4079. Notes:    this function is supported by Advanced NetWare 2.1+
  4080.     caller must have created the job or be an operator
  4081. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4082.  
  4083. Format of request buffer:
  4084. Offset    Size    Description
  4085.  00h    WORD    0007h (length of following data)
  4086.  02h    BYTE    6Ah (subfunction "Remove Job From Queue")
  4087.  03h    DWORD    (big-endian) object ID of queue
  4088.  07h    WORD    (big-endian) job number
  4089.  
  4090. Format of reply buffer:
  4091. Offset    Size    Description
  4092.  00h    WORD    (call) 0000h (no results returned)
  4093. --------N-21E3--SF6B-------------------------
  4094. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB LIST
  4095.     AH = E3h subfn 6Bh
  4096.     DS:SI -> request buffer (see below)
  4097.     ES:DI -> reply buffer (see below)
  4098. Return: AL = status (00h,96h,9Ch,D0h-D3h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4099. Notes:    this function is supported by Advanced NetWare 2.1+
  4100.     caller must be on a workstation which is security-equivalent to a
  4101.       member of the Q_USERS or Q_OPERATORS properties
  4102. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4103.  
  4104. Format of request buffer:
  4105. Offset    Size    Description
  4106.  00h    WORD    0005h (length of following data)
  4107.  02h    BYTE    6Bh (subfunction "Get Queue Job List")
  4108.  03h    DWORD    (big-endian) object ID of queue
  4109.  
  4110. Format of reply buffer:
  4111. Offset    Size    Description
  4112.  00h    WORD    (call) size of following results buffer (max 1F6h)
  4113.  02h    WORD    (big-endian) job count
  4114.  04h  N WORDs    (big-endian) list of job numbers by position in queue
  4115.     WORD    maximum job numbers
  4116. --------N-21E3--SF6C-------------------------
  4117. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE JOB ENTRY
  4118.     AH = E3h subfn 6Ch
  4119.     DS:SI -> request buffer (see below)
  4120.     ES:DI -> reply buffer (see below)
  4121. Return: AL = status (00h,96h,D0h-D3h,D5h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4122. Notes:    this function is supported by Advanced NetWare 2.1+
  4123.     caller must be on a workstation which is security-equivalent to a
  4124.       member of the Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4125. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4126.  
  4127. Format of request buffer:
  4128. Offset    Size    Description
  4129.  00h    WORD    0007h (length of following data)
  4130.  02h    BYTE    6Ch (subfunction "Read Queue Job Entry")
  4131.  03h    DWORD    (big-endian) object ID of queue
  4132.  07h    WORD    (big-endian) job number
  4133.  
  4134. Format of reply buffer:
  4135. Offset    Size    Description
  4136.  00h    WORD    (call) 0100h (size of following results)
  4137.  02h    BYTE    client station number
  4138.  03h    BYTE    client task number
  4139.  04h    DWORD    object ID of client
  4140.  08h    DWORD    (big-endian) object ID of target server
  4141.         FFFFFFFFh if any server acceptable
  4142.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4143.         FFFFFFFFFFFFh if serviced as soon as possible
  4144.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4145.  18h    WORD    (big-endian) job number
  4146.  1Ah    WORD    (big-endian) job type
  4147.  1Ch    BYTE    job position
  4148.  1Dh    BYTE    job control flags (see below)
  4149.  1Eh 14 BYTEs    ASCIZ job filename
  4150.  2Ch  6 BYTEs    job file handle
  4151.  32h    BYTE    server station
  4152.  33h    BYTE    server task number
  4153.  34h    DWORD    object ID of server
  4154.  38h 50 BYTEs    ASCIZ job description string
  4155.  6Ah 152 BYTEs    client record area
  4156.  
  4157. Bitfields for job control flags:
  4158.  bit 3    job will be serviced automatically if connection broken
  4159.  bit 4    job remains in queue after server aborts job
  4160.  bit 5    client has not filled associated job file
  4161.  bit 6    User Hold--job advances, but cannot be serviced until this bit is
  4162.       cleared by user or operator
  4163.  bit 7    Operator Hold--job advances, but cannot be serviced until this bit is
  4164.       cleared by an operator
  4165. --------N-21E3--SF6D-------------------------
  4166. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB ENTRY
  4167.     AH = E3h subfn 6Dh
  4168.     DS:SI -> request buffer (see below)
  4169.     ES:DI -> reply buffer (see below)
  4170. Return: AL = status (00h,96h,D0h,D1h,D5h,D7h,FEh,FFh) (see AH=E3h/SF=64h)
  4171. Notes:    this function is supported by Advanced NetWare 2.1+
  4172.     caller must be an operator or the user who created the job
  4173. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Eh
  4174.  
  4175. Format of request buffer:
  4176. Offset    Size    Description
  4177.  00h    WORD    0105h (length of following data)
  4178.  02h    BYTE    6Dh (subfunction "Change Queue Job Entry")
  4179.  03h    DWORD    (big-endian) object ID of queue
  4180.  07h    BYTE    client station number
  4181.  08h    BYTE    client task number
  4182.  09h    DWORD    (big-endian) object ID of client
  4183.  0Dh    DWORD    (big-endian) object ID of target server
  4184.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4185.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4186.  1Dh    WORD    (big-endian) job number
  4187.  1Fh    WORD    (big-endian) job type
  4188.  21h    BYTE    job position
  4189.  22h    BYTE    job control flags (see AH=E3h/SF=6Ch)
  4190.  23h 14 BYTEs    ASCIZ job filename
  4191.  31h  6 BYTEs    job file handle
  4192.  37h    BYTE    server station
  4193.  38h    BYTE    server task number
  4194.  39h    DWORD    object ID of server
  4195.  3Dh 50 BYTEs    ASCIZ job description string
  4196.  6Fh 152 BYTEs    client record area
  4197.  
  4198. Format of reply buffer:
  4199. Offset    Size    Description
  4200.  00h    WORD    (call) 0000h (no results returned)
  4201. --------N-21E3--SF6E-------------------------
  4202. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB POSITION
  4203.     AH = E3h subfn 6Eh
  4204.     DS:SI -> request buffer (see below)
  4205.     ES:DI -> reply buffer (see below)
  4206. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4207. Notes:    this function is supported by Advanced NetWare 2.1+
  4208.     caller must be an operator
  4209.     if the specified position is greater than the number of jobs in the
  4210.       queue, the job is placed at the end of the queue
  4211. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Dh
  4212.  
  4213. Format of request buffer:
  4214. Offset    Size    Description
  4215.  00h    WORD    0008h (length of following data)
  4216.  02h    BYTE    6Eh (subfunction "Change Queue Job Position")
  4217.  03h    DWORD    (big-endian) object ID of queue
  4218.  07h    WORD    (big-endian) job number
  4219.  09h    BYTE    new position in queue (01h-FAh)
  4220.  
  4221. Format of reply buffer:
  4222. Offset    Size    Description
  4223.  00h    WORD    (call) 0000h (no results returned)
  4224. --------N-21E3--SF6F-------------------------
  4225. INT 21 - Novell NetWare - QUEUE SERVICES - ATTACH QUEUE SERVER TO QUEUE
  4226.     AH = E3h subfn 6Fh
  4227.     DS:SI -> request buffer (see below)
  4228.     ES:DI -> reply buffer (see below)
  4229. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,DAh,DBh,FEh,FFh)
  4230.         (see also AH=E3h/SF=64h)
  4231.         FFh bindery failure, or no such property, or no such member
  4232. Desc:    attach the calling job server to the specified queue
  4233. Notes:    this function is supported by Advanced NetWare 2.1+
  4234.     a queue may have up to 25 job servers attached
  4235.     the calling workstation must be security-equivalent to a member of the
  4236.       queue's Q_SERVERS property
  4237. SeeAlso: AH=E3h/SF=70h,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4238.  
  4239. Format of request buffer:
  4240. Offset    Size    Description
  4241.  00h    WORD    0005h (length of following data)
  4242.  02h    BYTE    6Fh (subfunction "Attach Queue Server To Queue")
  4243.  03h    DWORD    (big-endian) object ID of queue
  4244.  
  4245. Format of reply buffer:
  4246. Offset    Size    Description
  4247.  00h    WORD    (call) 0000h (no results returned)
  4248. --------N-21E3--SF70-------------------------
  4249. INT 21 - Novell NetWare - QUEUE SERVICES - DETACH QUEUE SERVER FROM QUEUE
  4250.     AH = E3h subfn 70h
  4251.     DS:SI -> request buffer (see below)
  4252.     ES:DI -> reply buffer (see below)
  4253. Return: AL = status (00h,96h,9Ch,D0h,D1h,D2h,FEh,FFh) (see AH=E3h/SF=64h)
  4254. Desc:    remove the calling job server from the specified queue's list of
  4255.       servers
  4256. Notes:    this function is supported by Advanced NetWare 2.1+
  4257.     the caller must have previously attached itself to the queue
  4258. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4259.  
  4260. Format of request buffer:
  4261. Offset    Size    Description
  4262.  00h    WORD    0005h (length of following data)
  4263.  02h    BYTE    70h (subfunction "Detach Queue Server From Queue")
  4264.  03h    DWORD    (big-endian) object ID of queue
  4265.  
  4266. Format of reply buffer:
  4267. Offset    Size    Description
  4268.  00h    WORD    (call) 0000h (no results returned)
  4269. --------N-21E3--SF71-------------------------
  4270. INT 21 - Novell NetWare - QUEUE SERVICES - SERVICE QUEUE JOB AND OPEN FILE
  4271.     AH = E3h subfn 71h
  4272.     DS:SI -> request buffer (see below)
  4273.     ES:DI -> reply buffer (see AH=E3h/SF=68h)
  4274. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4275.         (see AH=E3h/SF=64h)
  4276. Notes:    this function is supported by Advanced NetWare 2.1+
  4277.     the caller must be on a workstation which is security-equivalent to a
  4278.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4279. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4280.  
  4281. Format of request buffer:
  4282. Offset    Size    Description
  4283.  00h    WORD    0007h (length of following data)
  4284.  02h    BYTE    71h (subfunction "Service Queue Job and Open File")
  4285.  03h    DWORD    (big-endian) object ID of queue
  4286.  07h    WORD    (big-endian) target job type
  4287.         FFFFh any
  4288. --------N-21E3--SF72-------------------------
  4289. INT 21 - Novell NetWare - QUEUE SERVICES - FINISH SERVICING QUEUE JOB AND FILE
  4290.     AH = E3h subfn 72h
  4291.     DS:SI -> request buffer (see below)
  4292.     ES:DI -> reply buffer (see below)
  4293. Return: AL = status (00h,96h,D0h,D1h,D6h) (see AH=E3h/SF=64h)
  4294. Desc:    inform the Queue Management System (QMS) that the queue server has
  4295.       completed a job
  4296. Notes:    this function is supported by Advanced NetWare 2.1+
  4297.     the caller must be a job server which has previously obtained a job
  4298.       for servicing
  4299. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4300.  
  4301. Format of request buffer:
  4302. Offset    Size    Description
  4303.  00h    WORD    000Bh (length of following data)
  4304.  02h    BYTE    72h (subfunction "Finish Servicing Queue Job and File")
  4305.  03h    DWORD    (big-endian) object ID of queue
  4306.  07h    WORD    (big-endian) job number
  4307.  09h    DWORD    (big-endian) charge
  4308.  
  4309. Format of reply buffer:
  4310. Offset    Size    Description
  4311.  00h    WORD    (call) 0000h (no results returned)
  4312. --------N-21E3--SF73-------------------------
  4313. INT 21 - Novell NetWare - QUEUE SERVICES - ABORT SERVICING QUEUE JOB AND FILE
  4314.     AH = E3h subfn 73h
  4315.     DS:SI -> request buffer (see below)
  4316.     ES:DI -> reply buffer (see below)
  4317. Return: AL = status (00h,96h,D0h,D1h,D6h,D9h) (see AH=E3h/SF=64h)
  4318. Desc:    inform the Queue Management System (QMS) that the queue server is
  4319.       unable to service a previously-accepted job
  4320. Note:    this function is supported by Advanced NetWare 2.1+
  4321. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=76h
  4322.  
  4323. Format of request buffer:
  4324. Offset    Size    Description
  4325.  00h    WORD    0007h (length of following data)
  4326.  02h    BYTE    73h (subfunction "Abort Servicing Queue Job and File")
  4327.  03h    DWORD    (big-endian) object ID of queue
  4328.  07h    WORD    (big-endian) job number
  4329.  
  4330. Format of reply buffer:
  4331. Offset    Size    Description
  4332.  00h    WORD    (call) 0000h (no results returned)
  4333. --------N-21E3--SF74-------------------------
  4334. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE TO CLIENT RIGHTS
  4335.     AH = E3h subfn 74h
  4336.     DS:SI -> request buffer (see below)
  4337.     ES:DI -> reply buffer (see below)
  4338. Return: AL = status (00h,96h,D0h,D1h,D5h,D9h) (see AH=E3h/SF=64h)
  4339. Desc:    temporarily assume the login identity of the client submitting the
  4340.       job being serviced
  4341. Notes:    this function is supported by Advanced NetWare 2.1+
  4342.     caller must be a job server which has obtained a job for servicing
  4343. SeeAlso: AH=E3h/SF=75h
  4344.  
  4345. Format of request buffer:
  4346. Offset    Size    Description
  4347.  00h    WORD    0007h (length of following data)
  4348.  02h    BYTE    74h (subfunction "Change To Client Rights")
  4349.  03h    DWORD    (big-endian) object ID of queue
  4350.  07h    WORD    (big-endian) job number
  4351.  
  4352. Format of reply buffer:
  4353. Offset    Size    Description
  4354.  00h    WORD    (call) 0000h (no results returned)
  4355. --------N-21E3--SF75-------------------------
  4356. INT 21 - Novell NetWare - QUEUE SERVICES - RESTORE QUEUE SERVER RIGHTS
  4357.     AH = E3h subfn 75h
  4358.     DS:SI -> request buffer (see below)
  4359.     ES:DI -> reply buffer (see below)
  4360. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4361.         (see AH=E3h/SF=64h)
  4362. Desc:    restore server's own identity after assuming the login identity of the
  4363.       client submitting the job being serviced
  4364. Notes:    this function is supported by Advanced NetWare 2.1+
  4365.     caller must be a job server which has previously changed its identity
  4366. SeeAlso: AH=E3h/SF=74h
  4367.  
  4368. Format of request buffer:
  4369. Offset    Size    Description
  4370.  00h    WORD    0001h (length of following data)
  4371.  02h    BYTE    75h (subfunction "Change To Client Rights")
  4372.  
  4373. Format of reply buffer:
  4374. Offset    Size    Description
  4375.  00h    WORD    (call) 0000h (no results returned)
  4376. --------N-21E3--SF76-------------------------
  4377. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE SERVER CURRENT STATUS
  4378.     AH = E3h subfn 76h
  4379.     DS:SI -> request buffer (see below)
  4380.     ES:DI -> reply buffer (see below)
  4381. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4382. Notes:    this function is supported by Advanced NetWare 2.1+
  4383.     caller must be on a workstation which is security-equivalent to a
  4384.       member of the Q_USERS or Q_OPERATORS properties
  4385. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=77h,AH=E3h/SF=78h
  4386.  
  4387. Format of request buffer:
  4388. Offset    Size    Description
  4389.  00h    WORD    000Ah (length of following data)
  4390.  02h    BYTE    76h (subfunction "Read Queue Server Current Status")
  4391.  03h    DWORD    (big-endian) object ID of queue
  4392.  07h    DWORD    (big-endian) object ID of server
  4393.  0Bh    BYTE    server station
  4394.  
  4395. Format of reply buffer:
  4396. Offset    Size    Description
  4397.  00h    WORD    (call) 0040h (size of following results)
  4398.  02h 64 BYTEs    server status record (format depends on server)
  4399.         first four bytes should contain estimated "price" for an
  4400.         average job
  4401. --------N-21E3--SF77-------------------------
  4402. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE SERVER CURRENT STATUS
  4403.     AH = E3h subfn 77h
  4404.     DS:SI -> request buffer (see below)
  4405.     ES:DI -> reply buffer (see below)
  4406. Return: AL = status (00h,96h,9Ch,D0h,D1h,FEh,FFh) (see AH=E3h/SF=64h)
  4407. Notes:    this function is supported by Advanced NetWare 2.1+
  4408.     caller must be a job server which has attached itself to the queue
  4409. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=76h,AH=E3h/SF=78h
  4410.  
  4411. Format of request buffer:
  4412. Offset    Size    Description
  4413.  00h    WORD    0045h (length of following data)
  4414.  02h    BYTE    77h (subfunction "Set Queue Server Current Status")
  4415.  03h    DWORD    (big-endian) object ID of queue
  4416.  02h 64 BYTEs    server status record (format depends on server)
  4417.         first four bytes should contain estimated "price" for an
  4418.         average job
  4419.  
  4420. Format of reply buffer:
  4421. Offset    Size    Description
  4422.  00h    WORD    (call) 0000h (no results returned)
  4423. --------N-21E3--SF78-------------------------
  4424. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB'S FILE SIZE
  4425.     AH = E3h subfn 78h
  4426.     DS:SI -> request buffer (see below)
  4427.     ES:DI -> reply buffer (see below)
  4428. Return: AL = status (see also AH=E3h/SF=64h)
  4429.         00h successful
  4430. Notes:    this function is supported by Advanced NetWare 2.1+
  4431.     caller must be on a workstation which is security-equivalent to a
  4432.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4433. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=71h
  4434.  
  4435. Format of request buffer:
  4436. Offset    Size    Description
  4437.  00h    WORD    0007h (length of following data)
  4438.  02h    BYTE    78h (subfunction "Get Queue Job's File Size")
  4439.  03h    DWORD    (big-endian) object ID of queue
  4440.  07h    WORD    (big-endian) job number
  4441.  
  4442. Format of reply buffer:
  4443. Offset    Size    Description
  4444.  00h    WORD    (call) 000Ah (size of following results)
  4445.  02h    DWORD    (big-endian) object ID of queue
  4446.  06h    WORD    (big-endian) job number
  4447.  08h    DWORD    (big-endian) size of job file in bytes
  4448. --------N-21E3--SF96-------------------------
  4449. INT 21 - Novell NetWare - ACCOUNTING SERVICES - GET ACCOUNT STATUS
  4450.     AH = E3h subfn 96h
  4451.     DS:SI -> request buffer (see below)
  4452.     ES:DI -> reply buffer (see below)
  4453. Return: AL = status (00h,C0h,C1h) (see below)
  4454. Note:    this function is supported by Advanced NetWare 2.1+
  4455. SeeAlso: AH=E3h/SF=97h,AH=E3h/SF=98h,AH=E3h/SF=99h
  4456.  
  4457. Values for status:
  4458.  00h    successful
  4459.  C0h    no account privileges
  4460.  C1h    no account balance
  4461.  C2h    credit limit exceeded
  4462.  C3h    too many holds on account
  4463.  
  4464. Format of request buffer:
  4465. Offset    Size    Description
  4466.  00h    WORD    length of following data (max 33h)
  4467.  02h    BYTE    96h (subfunction "Get Account Status")
  4468.  03h    WORD    (big-endian) type of bindery object
  4469.  05h    BYTE    length of object name (01h to 2Fh)
  4470.  06h  N BYTEs    object name
  4471.  
  4472. Format of reply buffer:
  4473. Offset    Size    Description
  4474.  00h    WORD    (call) length of following buffer space
  4475.  02h    DWORD    (big-endian) account balance
  4476.  06h    DWORD    (big-endian) credit limit
  4477.         signed number indicating lowest allowable account balance
  4478.  0Ah 120 BYTEs    reserved
  4479.  82h    DWORD    (big-endian) object ID, server 1
  4480.  86h    DWORD    (big-endian) hold amount, server 1
  4481.     ...
  4482.  F8h    DWORD    (big-endian) object ID, server 16
  4483.  FCh    DWORD    (big-endian) hold amount, server 16
  4484. Note:    the reply buffer lists the servers which have placed holds on a portion
  4485.       of the account balance, and the amount reserved by each
  4486. --------N-21E3--SF97-------------------------
  4487. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT CHARGE
  4488.     AH = E3h subfn 97h
  4489.     DS:SI -> request buffer (see below)
  4490.     ES:DI -> reply buffer (see below)
  4491. Return: AL = status (00h,C0h-C2h) (see AH=E3h/SF=96h)
  4492. Note:    this function is supported by Advanced NetWare 2.1+
  4493. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=98h
  4494.  
  4495. Format of request buffer:
  4496. Offset    Size    Description
  4497.  00h    WORD    length of following data (max 13Fh)
  4498.  02h    BYTE    97h (subfunction "Submit Account Charge")
  4499.  03h    WORD    (big-endian) service type
  4500.  05h    DWORD    (big-endian) amount to be charged to account
  4501.  09h    DWORD    (big-endian) amount of prior hold to be cancelled
  4502.  0Dh    WORD    (big-endian) type of bindery object
  4503.  0Fh    WORD    (big-endian) type of comment
  4504.         8000h-FFFFh reserved for experimental use
  4505.  11h    BYTE    length of object's name
  4506.  12h  N BYTEs    object name
  4507.     BYTE    length of comment
  4508.       N BYTEs    comment
  4509.  
  4510. Format of reply buffer:
  4511. Offset    Size    Description
  4512.  00h    WORD    0000h (no data returned)
  4513. --------N-21E3--SF98-------------------------
  4514. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT HOLD
  4515.     AH = E3h subfn 98h
  4516.     DS:SI -> request buffer (see below)
  4517.     ES:DI -> reply buffer (see below)
  4518. Return: AL = status (00h,C0h-C3h) (see AH=E3h/SF=96h)
  4519. Note:    this function is supported by Advanced NetWare 2.1+
  4520. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=97h
  4521.  
  4522. Format of request buffer:
  4523. Offset    Size    Description
  4524.  00h    WORD    length of following data (max 37h)
  4525.  02h    BYTE    98h (subfunction "Submit Account Hold")
  4526.  03h    DWORD    (big-endian) amount of account balance to reserve
  4527.  07h    WORD    (big-endian) type of bindery object
  4528.  09h    BYTE    length of object's name
  4529.  0Ah  N BYTEs    object name
  4530.  
  4531. Format of reply buffer:
  4532. Offset    Size    Description
  4533.  00h    WORD    0000h (no data returned)
  4534. --------N-21E3--SF99-------------------------
  4535. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT NOTE
  4536.     AH = E3h subfn 99h
  4537.     DS:SI -> request buffer (see below)
  4538.     ES:DI -> reply buffer (see below)
  4539. Return: AL = status
  4540.         00h successful
  4541.         C0h no account privileges
  4542. Note:    this function is supported by Advanced NetWare 2.1+
  4543. SeeAlso: AH=E3h/SF=96h
  4544.  
  4545. Format of request buffer:
  4546. Offset    Size    Description
  4547.  00h    WORD    length of following data (max 137h)
  4548.  02h    BYTE    99h (subfunction "Submit Account Note")
  4549.  03h    WORD    (big-endian) type of service
  4550.  05h    WORD    (big-endian) type of bindery object
  4551.  07h    WORD    (big-endian) type of comment
  4552.         8000h-FFFFh reserved for experimental use
  4553.  09h    BYTE    length of object's name
  4554.  0Ah  N BYTEs    object name
  4555.     BYTE    length of comment
  4556.       N BYTEs    comment
  4557.  
  4558. Format of reply buffer:
  4559. Offset    Size    Description
  4560.  00h    WORD    0000h (no data returned)
  4561. --------N-21E3--SFC8-------------------------
  4562. INT 21 - Novell NetWare - FILE SERVER - CHECK CONSOLE PRIVILEGES
  4563.     AH = E3h subfn C8h
  4564.     DS:SI -> request buffer (see below)
  4565.     ES:DI -> reply buffer (see below)
  4566. Return: AL = status
  4567.         00h successful
  4568.         C6h no console rights
  4569. Desc:    determine whether the caller is a console operator
  4570. Notes:    this function is supported by Advanced NetWare 2.1+
  4571.     NetWare determines console privileges by checking the file server's
  4572.       OPERATOR property for the caller's object ID
  4573. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4574.  
  4575. Format of request buffer:
  4576. Offset    Size    Description
  4577.  00h    WORD    0001h (length of following data)
  4578.  02h    BYTE    C8h (subfunction "Check Console Privileges")
  4579.  
  4580. Format of reply buffer:
  4581. Offset    Size    Description
  4582.  00h    WORD    (call) 0000h (no results returned)
  4583. --------N-21E3--SFC9-------------------------
  4584. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DESCRIPTION STRINGS
  4585.     AH = E3h subfn C9h
  4586.     DS:SI -> request buffer (see below)
  4587.     ES:DI -> reply buffer (see below)
  4588. Return: AL = status
  4589.         00h successful
  4590. Notes:    this function is supported by Advanced NetWare 2.1+
  4591.     the calling workstation must be attached to the file server
  4592. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E8h
  4593.  
  4594. Format of request buffer:
  4595. Offset    Size    Description
  4596.  00h    WORD    0001h (length of following data)
  4597.  02h    BYTE    C9h (subfunction "Get File Server Description Strings")
  4598.  
  4599. Format of reply buffer:
  4600. Offset    Size    Description
  4601.  00h    WORD    (call) 0200h (size of following results buffer)
  4602.  02h    var    ASCIZ name of company distributing this copy of NetWare
  4603.     var    ASCIZ version and revision
  4604.       9 BYTEs    ASCIZ revision date (mm/dd/yy)
  4605.     var    ASCIZ copyright notice
  4606. --------N-21E3--SFCA-------------------------
  4607. INT 21 - Novell NetWare - FILE SERVER - SET FILE SERVER DATE AND TIME
  4608.     AH = E3h subfn CAh
  4609.     DS:SI -> request buffer (see below)
  4610.     ES:DI -> reply buffer (see below)
  4611. Return: AL = status
  4612.         00h successful
  4613.         C6h no console rights
  4614. Notes:    this function is supported by Advanced NetWare 2.1+
  4615.     the calling workstation must have console operator privileges
  4616. SeeAlso: AH=2Bh,AH=2Dh,AH=E3h/SF=C8h,AH=E7h
  4617.  
  4618. Format of request buffer:
  4619. Offset    Size    Description
  4620.  00h    WORD    0007h (length of following data)
  4621.  02h    BYTE    CAh (subfunction "Set File Server Date And Time")
  4622.  03h    BYTE    year (00-79 = 2000-2079, 80-99 = 1980-1999)
  4623.  04h    BYTE    month (1-12)
  4624.  05h    BYTE    day (1-31)
  4625.  06h    BYTE    hour (0-23)
  4626.  07h    BYTE    minute
  4627.  08h    BYTR    second
  4628.  
  4629. Format of reply buffer:
  4630. Offset    Size    Description
  4631.  00h    WORD    (call) 0000h (no results returned)
  4632. --------N-21E3--SFCB-------------------------
  4633. INT 21 - Novell NetWare - FILE SERVER - DISABLE FILE SERVER LOGIN
  4634.     AH = E3h subfn CBh
  4635.     DS:SI -> request buffer (see below)
  4636.     ES:DI -> reply buffer (see below)
  4637. Return: AL = status
  4638.         00h successful
  4639.         C6h no console rights
  4640. Notes:    this function is supported by Advanced NetWare 2.1+
  4641.     the calling workstation must have console operator privileges
  4642. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CCh,AH=E3h/SF=D3h
  4643.  
  4644. Format of request buffer:
  4645. Offset    Size    Description
  4646.  00h    WORD    0001h (length of following data)
  4647.  02h    BYTE    CBh (subfunction "Disable File Server Login")
  4648.  
  4649. Format of reply buffer:
  4650. Offset    Size    Description
  4651.  00h    WORD    (call) 0000h (no results returned)
  4652. --------N-21E3--SFCC-------------------------
  4653. INT 21 - Novell NetWare - FILE SERVER - ENABLE FILE SERVER LOGIN
  4654.     AH = E3h subfn CCh
  4655.     DS:SI -> request buffer (see below)
  4656.     ES:DI -> reply buffer (see below)
  4657. Return: AL = status
  4658.         00h successful
  4659.         C6h no console rights
  4660. Notes:    this function is supported by Advanced NetWare 2.1+
  4661.     the calling workstation must have console operator privileges
  4662. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh
  4663.  
  4664. Format of request buffer:
  4665. Offset    Size    Description
  4666.  00h    WORD    0001h (length of following data)
  4667.  02h    BYTE    CCh (subfunction "Enable File Server Login")
  4668.  
  4669. Format of reply buffer:
  4670. Offset    Size    Description
  4671.  00h    WORD    (call) 0000h (no results returned)
  4672. --------N-21E3--SFCD-------------------------
  4673. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LOGIN STATUS
  4674.     AH = E3h subfn CDh
  4675.     DS:SI -> request buffer (see below)
  4676.     ES:DI -> reply buffer (see below)
  4677. Return: AL = status
  4678.         00h successful
  4679.         C6h no console rights
  4680. Notes:    this function is supported by Advanced NetWare 2.1+
  4681.     the calling workstation must have console operator privileges
  4682. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CCh
  4683.  
  4684. Format of request buffer:
  4685. Offset    Size    Description
  4686.  00h    WORD    0001h (length of following data)
  4687.  02h    BYTE    CDh (subfunction "Get File Server Login Status")
  4688.  
  4689. Format of reply buffer:
  4690. Offset    Size    Description
  4691.  00h    WORD    (call) 0001h (size of following results buffer)
  4692.  02h    BYTE    login state (00h disabled, 01h enabled)
  4693. --------N-21E3--SFCE-------------------------
  4694. INT 21 - Novell NetWare - FILE SERVICES - PURGE ALL ERASED FILES
  4695.     AH = E3h subfn CEh
  4696.     DS:SI -> request buffer (see below)
  4697.     ES:DI -> reply buffer (see below)
  4698. Return: AL = status
  4699.         00h successful
  4700.         C6h no console rights
  4701. Desc:    all files marked for deletion on the file server are purged, regardless
  4702.       of which workstation actually erased them
  4703. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  4704.       Alloy NTNX
  4705.     the calling workstation must have console operator privileges
  4706. SeeAlso: AH=13h,AH=E2h/SF=10h,AH=E3h/SF=C8h,AX=F244h
  4707.  
  4708. Format of request buffer:
  4709. Offset    Size    Description
  4710.  00h    WORD    0001h (length of following data)
  4711.  02h    BYTE    CEh (subfunction "Purge All Erased Files")
  4712.  
  4713. Format of reply buffer:
  4714. Offset    Size    Description
  4715.  00h    WORD    (call) 0000h (no results returned)
  4716. --------N-21E3--SFCF-------------------------
  4717. INT 21 - Novell NetWare - FILE SERVER - DISABLE TRANSACTION TRACKING
  4718.     AH = E3h subfn CFh
  4719.     DS:SI -> request buffer (see below)
  4720.     ES:DI -> reply buffer (see below)
  4721. Return: AL = status
  4722.         00h successful
  4723.         C6h no console rights
  4724. Notes:    this function is supported by Advanced NetWare 2.1+
  4725.     the calling workstation must have console operator privileges
  4726. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D0h
  4727.  
  4728. Format of request buffer:
  4729. Offset    Size    Description
  4730.  00h    WORD    0001h (length of following data)
  4731.  02h    BYTE    CFh (subfunction "Disable Transaction Tracking")
  4732.  
  4733. Format of reply buffer:
  4734. Offset    Size    Description
  4735.  00h    WORD    (call) 0000h (no results returned)
  4736. --------N-21E3--SFD0-------------------------
  4737. INT 21 - Novell NetWare - FILE SERVER - ENABLE TRANSACTION TRACKING
  4738.     AH = E3h subfn D0h
  4739.     DS:SI -> request buffer (see below)
  4740.     ES:DI -> reply buffer (see below)
  4741. Return: AL = status
  4742.         00h successful
  4743.         C6h no console rights
  4744. Desc:    restart transaction tracking after being stopped either explicitly by
  4745.       AH=E3h/SF=CFh or automatically due to a full transaction volume
  4746. Notes:    this function is supported by Advanced NetWare 2.1+
  4747.     the calling workstation must have console operator privileges
  4748. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh
  4749.  
  4750. Format of request buffer:
  4751. Offset    Size    Description
  4752.  00h    WORD    0001h (length of following data)
  4753.  02h    BYTE    D0h (subfunction "Enable Transaction Tracking")
  4754.  
  4755. Format of reply buffer:
  4756. Offset    Size    Description
  4757.  00h    WORD    (call) 0000h (no results returned)
  4758. --------N-21E3--SFD1-------------------------
  4759. INT 21 - Novell NetWare - FILE SERVER - SEND CONSOLE BROADCAST
  4760.     AH = E3h subfn D1h
  4761.     DS:SI -> request buffer (see below)
  4762.     ES:DI -> reply buffer (see below)
  4763. Return: AL = status
  4764.         00h successful
  4765.         C6h no console rights
  4766. Notes:    this function is supported by Advanced NetWare 2.1+
  4767.     the calling workstation must have console operator privileges
  4768.     the broadcast message will not be received by workstations which have
  4769.       disabled broadcasts with AH=E1h/SF=02h
  4770. SeeAlso: AH=E1h/SF=02h,AH=E1h/SF=09h,AH=E3h/SF=C8h,AH=E3h/SF=D3h
  4771.  
  4772. Format of request buffer:
  4773. Offset    Size    Description
  4774.  00h    WORD    length of following data (max A2h)
  4775.  02h    BYTE    D1h (subfunction "Send Console Broadcast")
  4776.  03h    BYTE    number of connections to receive message
  4777.         00h = all, else specific list below
  4778.  04h  N BYTEs    connection list
  4779.     BYTE    length of message (max 3Ch)
  4780.       N BYTEs    message
  4781.  
  4782. Format of reply buffer:
  4783. Offset    Size    Description
  4784.  00h    WORD    (call) 0000h (no results returned)
  4785. --------N-21E3--SFD2-------------------------
  4786. INT 21 - Novell NetWare - FILE SERVER - CLEAR CONNECTION NUMBER
  4787.     AH = E3h subfn D2h
  4788.     DS:SI -> request buffer (see below)
  4789.     ES:DI -> reply buffer (see below)
  4790. Return: AL = status
  4791.         00h successful
  4792.         C6h no console rights
  4793. Desc:    close the open files and release all file locks for a connection,
  4794.       abort transactions if a TTS file server, and detach from the file
  4795.       server
  4796. Notes:    this function is supported by Advanced NetWare 2.1+
  4797.     the caller must have SUPERVISOR privileges
  4798. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4799.  
  4800. Format of request buffer:
  4801. Offset    Size    Description
  4802.  00h    WORD    0002h (length of following data)
  4803.  02h    BYTE    D2h (subfunction "Clear Connection Number")
  4804.  03h    BYTE    connection number
  4805.  
  4806. Format of reply buffer:
  4807. Offset    Size    Description
  4808.  00h    WORD    (call) 0000h (no results returned)
  4809. --------N-21E3--SFD3-------------------------
  4810. INT 21 - Novell NetWare - FILE SERVER - DOWN FILE SERVER
  4811.     AH = E3h subfn D3h
  4812.     DS:SI -> request buffer (see below)
  4813.     ES:DI -> reply buffer (see below)
  4814. Return: AL = status
  4815.         00h successful
  4816.         C6h no console rights
  4817.         FFh files open
  4818. Desc:    take down the file server
  4819. Notes:    this function is supported by Advanced NetWare 2.1+
  4820.     the calling workstation must have SUPERVISOR privileges
  4821. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CFh,AH=E3h/SF=D1h
  4822.  
  4823. Format of request buffer:
  4824. Offset    Size    Description
  4825.  00h    WORD    0002h (length of following data)
  4826.  02h    BYTE    D3h (subfunction "Down File Server")
  4827.  03h    BYTE    flag: force down even if files open if nonzero
  4828.  
  4829. Format of reply buffer:
  4830. Offset    Size    Description
  4831.  00h    WORD    (call) 0000h (no results returned)
  4832. --------N-21E3--SFD4-------------------------
  4833. INT 21 - Novell NetWare - FILE SERVER - GET FILE SYSTEM STATISTICS
  4834.     AH = E3h subfn D4h
  4835.     DS:SI -> request buffer (see below)
  4836.     ES:DI -> reply buffer (see below)
  4837. Return: AL = status
  4838.         00h successful
  4839.         C6h no console rights
  4840. Notes:    this function is supported by Advanced NetWare 2.1+
  4841.     the calling workstation must have console operator privileges
  4842. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  4843.  
  4844. Format of request buffer:
  4845. Offset    Size    Description
  4846.  00h    WORD    0001h (length of following data)
  4847.  02h    BYTE    D4h (subfunction "Get File System Statistics")
  4848.  
  4849. Format of reply buffer:
  4850. Offset    Size    Description
  4851.  00h    WORD    (call) 0028h (size of following results buffer)
  4852.  02h    DWORD    clock ticks since system started
  4853.  06h    WORD    maximum open files set by configuration
  4854.  08h    WORD    maximum files open concurrently
  4855.  0Ah    WORD    current number of open files
  4856.  0Ch    DWORD    total files opened
  4857.  10h    DWORD    total file read requests
  4858.  14h    DWORD    total file write requests
  4859.  18h    WORD    current changed FATs
  4860.  1Ah    WORD    total changed FATs
  4861.  1Ch    WORD    number of FAT write errors
  4862.  1Eh    WORD    number of fatal FAT write errors
  4863.  20h    WORD    number of FAT scan errors
  4864.  22h    WORD    maximum concurrently-indexed files
  4865.  24h    WORD    current number of indexed files
  4866.  26h    WORD    number of attached indexed files
  4867.  28h    WORD    number of indexed files available
  4868. Note:    all fields except the first are big-endian
  4869. --------N-21E3--SFD5-------------------------
  4870. INT 21 - Novell NetWare - FILE SERVER - GET TRANSACTION TRACKING STATISTICS
  4871.     AH = E3h subfn D5h
  4872.     DS:SI -> request buffer (see below)
  4873.     ES:DI -> reply buffer (see below)
  4874. Return: AL = status
  4875.         00h successful
  4876.         C6h no console rights
  4877. Notes:    this function is supported by Advanced NetWare 2.1+
  4878.     the calling workstation must have console operator privileges
  4879. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh,AH=E3h/SF=D0h,AH=E3h/SF=E8h
  4880.  
  4881. Format of request buffer:
  4882. Offset    Size    Description
  4883.  00h    WORD    0001h (length of following data)
  4884.  02h    BYTE    D5h (subfunction "TTS Get Statistics")
  4885.  
  4886. Format of reply buffer:
  4887. Offset    Size    Description
  4888.  00h    WORD    (call) length of following results buffer (max 1BCh)
  4889.  02h    DWORD    (big-endian) clock ticks since system started
  4890.  06h    BYTE    transaction tracking supported if nonzero
  4891.         (all following fields are invalid if zero)
  4892.  07h    BYTE    transaction tracking enabled
  4893.  08h    WORD    (big-endian) transaction volume number
  4894.  0Ah    WORD    (big-endian) maximum simultaneous transactions configured
  4895.  0Ch    WORD    (big-endian) maximum simultaneous transactions since startup
  4896.  0Eh    WORD    (big-endian) current transactions in progress
  4897.  10h    DWORD    (big-endian) total transactions performed
  4898.  14h    DWORD    (big-endian) total write transactions
  4899.  18h    DWORD    (big-endian) total transactions backed out
  4900.  1Ch    WORD    (big-endian) number of unfilled backout requests
  4901.  1Eh    WORD    (big-endian) disk blocks used for transaction tracking
  4902.  20h    DWORD    (big-endian) blocks allocated for tracked-file FATs
  4903.  24h    DWORD    (big-endian) number of file size changes during a transaction
  4904.  28h    DWORD    (big-endian) number of file truncations during a transaction
  4905.  2Ch    BYTE    number of records following
  4906.  2Dh    Active Transaction Records [array]
  4907.     Offset    Size    Description
  4908.      00h    BYTE    logical connection number
  4909.      01h    BYTE    task number
  4910. --------N-21E3--SFD6-------------------------
  4911. INT 21 - Novell NetWare - FILE SERVER - GET DISK CACHE STATISTICS
  4912.     AH = E3h subfn D6h
  4913.     DS:SI -> request buffer (see below)
  4914.     ES:DI -> reply buffer (see below)
  4915. Return: AL = status
  4916.         00h successful
  4917.         C6h no console rights
  4918. Notes:    this function is supported by Advanced NetWare 2.1+
  4919.     the calling workstation must have console operator privileges
  4920. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D5h,AH=E3h/SF=D8h,AH=E3h/SF=D9h,AH=E3h/SF=E6h
  4921.  
  4922. Format of request buffer:
  4923. Offset    Size    Description
  4924.  00h    WORD    0001h (length of following data)
  4925.  02h    BYTE    D6h (subfunction "Get Disk Cache Statistics")
  4926.  
  4927. Format of reply buffer:
  4928. Offset    Size    Description
  4929.  00h    WORD    (call) 004Eh (length of following results buffer)
  4930.  02h    DWORD    clock ticks since system started
  4931.  06h    WORD    number of cache buffers
  4932.  08h    WORD    size of cache buffer in bytes
  4933.  0Ah    WORD    number of dirty cache buffers
  4934.  0Ch    DWORD    number of cache read requests
  4935.  10h    DWORD    number of cache write requests
  4936.  14h    DWORD    number of cache hits
  4937.  18h    DWORD    number of cache misses
  4938.  1Ch    DWORD    number of physical read requests
  4939.  20h    DWORD    number of physical write requests
  4940.  24h    WORD    number of physical read errors
  4941.  26h    WORD    number of physical write errors
  4942.  28h    DWORD    cache get requests
  4943.  2Ch    DWORD    cache full write requests
  4944.  30h    DWORD    cache partial write requests
  4945.  34h    DWORD    background dirty writes
  4946.  38h    DWORD    background aged writes
  4947.  3Ch    DWORD    total cache writes
  4948.  40h    DWORD    number of cache allocations
  4949.  44h    WORD    thrashing count
  4950.  46h    WORD    number of times LRU block was dirty
  4951.  48h    WORD    number of reads on cache blocks not yet filled by writes
  4952.  4Ah    WORD    number of times a fragmented write occurred
  4953.  4Ch    WORD    number of cache hits on unavailable block
  4954.  4Eh    WORD    number of times a cache block was scrapped
  4955. Note:    all fields except the first are big-endian
  4956. --------N-21E3--SFD7-------------------------
  4957. INT 21 - Novell NetWare - FILE SERVER - GET DRIVE MAPPING TABLE
  4958.     AH = E3h subfn D7h
  4959.     DS:SI -> request buffer (see below)
  4960.     ES:DI -> reply buffer (see below)
  4961. Return: AL = status
  4962.         00h successful
  4963.         C6h no console rights
  4964. Notes:    this function is supported by Advanced NetWare 2.1+
  4965.     the calling workstation must have console operator privileges
  4966. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  4967.  
  4968. Format of request buffer:
  4969. Offset    Size    Description
  4970.  00h    WORD    0001h (length of following data)
  4971.  02h    BYTE    D7h (subfunction "Get Drive Mapping Table")
  4972.  
  4973. Format of reply buffer:
  4974. Offset    Size    Description
  4975.  00h    WORD    (call) 00ECh (length of following results buffer)
  4976.  02h    DWORD    (big-endian) clock tick elapsed since system started
  4977.  06h    BYTE    fault tolerance (SFT) level
  4978.  07h    BYTE    number of logical drives attached to server
  4979.  08h    BYTE    number of physical drives attached to server
  4980.  09h  5 BYTEs    disk channel types (00h none, 01h XT, 02h AT, 03h SCSI,
  4981.         04h disk coprocessor drive, 32h-FFh value-added drive types)
  4982.  0Eh    WORD    (big-endian) number of outstanding controller commands
  4983.  10h 32 BYTEs    drive mapping table (FFh = no such drive)
  4984.  30h 32 BYTEs    drive mirror table (secondary physical drive, FFh = none)
  4985.  50h 32 BYTEs    dead mirror table (last drive mapped to, FFh if never mirrored)
  4986.  70h    BYTE    physical drive being remirrored (FFh = none)
  4987.  71h    BYTE    reserved
  4988.  72h    DWORD    (big-endian) remirrored block
  4989.  76h 60 BYTEs    SFT error table (internal error counters)
  4990. --------N-21E3--SFD8-------------------------
  4991. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL DISK STATISTICS
  4992.     AH = E3h subfn D8h
  4993.     DS:SI -> request buffer (see below)
  4994.     ES:DI -> reply buffer (see below)
  4995. Return: AL = status
  4996.         00h successful
  4997.         C6h no console rights
  4998. Notes:    this function is supported by Advanced NetWare 2.1+
  4999.     the calling workstation must have console operator privileges
  5000. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E9h
  5001.  
  5002. Format of request buffer:
  5003. Offset    Size    Description
  5004.  00h    WORD    0002h (length of following data)
  5005.  02h    BYTE    D8h (subfunction "Get Physical Disk Statistics")
  5006.  03h    BYTE    physical disk number
  5007.  
  5008. Format of reply buffer:
  5009. Offset    Size    Description
  5010.  00h    WORD    (call) 005Dh (size of following results record)
  5011.  02h    DWORD    (big-endian) clock ticks since system started
  5012.  06h    BYTE    physical disk channel
  5013.  07h    BYTE    flag: drive removable if nonzero
  5014.  08h    BYTE    physical drive type
  5015.  09h    BYTE    drive number within controller
  5016.  0Ah    BYTE    controller number
  5017.  0Bh    BYTE    controller type
  5018.  0Ch    DWORD    (big-endian) size of drive in 4K disk blocks
  5019.  10h    WORD    (big-endian) number of cylinders on drive
  5020.  12h    BYTE    number of heads
  5021.  13h    BYTE    number of sectors per track
  5022.  14h 64 BYTEs    ASCIZ drive make and model
  5023.  54h    WORD    (big-endian) number of I/O errors
  5024.  56h    DWORD    (big-endian) start of Hot Fix table
  5025.  5Ah    WORD    (big-endian) size of Hot Fix table
  5026.  5Ch    WORD    (big-endian) number of Hot Fix blocks available
  5027.  5Eh    BYTE    flag: Hot Fix disabled if nonzero
  5028. --------N-21E3--SFD9-------------------------
  5029. INT 21 - Novell NetWare - FILE SERVER - GET DISK CHANNEL STATISTICS
  5030.     AH = E3h subfn D9h
  5031.     DS:SI -> request buffer (see below)
  5032.     ES:DI -> reply buffer (see below)
  5033. Return: AL = status
  5034.         00h successful
  5035.         C6h no console rights
  5036. Notes:    this function is supported by Advanced NetWare 2.1+
  5037.     the calling workstation must have console operator privileges
  5038. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D8h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  5039.  
  5040. Format of request buffer:
  5041. Offset    Size    Description
  5042.  00h    WORD    0002h (length of following data)
  5043.  02h    BYTE    D9h (subfunction "Get Disk Channel Statistics")
  5044.  03h    BYTE    channel number
  5045.  
  5046. Format of reply buffer:
  5047. Offset    Size    Description
  5048.  00h    WORD    (call) 00A8h (size of following results record)
  5049.  02h    DWORD    (big-endian) clock ticks since system started
  5050.  06h    WORD    (big-endian) channel run state (see below)
  5051.  08h    WORD    (big-endian) channel synchronization state (see below)
  5052.  0Ah    BYTE    driver type
  5053.  0Bh    BYTE    major version of driver
  5054.  0Ch    BYTE    minor version of driver
  5055.  0Dh 65 BYTEs    ASCIZ driver description
  5056.  4Eh    WORD    (big-endian) first I/O address used
  5057.  50h    WORD    (big-endian) length of first I/O address
  5058.  52h    WORD    (big-endian) second I/O address used
  5059.  54h    WORD    (big-endian) length of second I/O address
  5060.  56h  3 BYTEs    first shared memory address
  5061.  59h  2 BYTEs    length of first shared memory address
  5062.  5Bh  3 BYTEs    second shared memory address
  5063.  5Eh  2 BYTEs    length of second shared memory address
  5064.  60h    BYTE    first interrupt number in-use flag
  5065.  61h    BYTE    first interrupt number used
  5066.  62h    BYTE    second interrupt number in-use flag
  5067.  63h    BYTE    second interrupt number used
  5068.  64h    BYTE    first DMA channel in-use flag
  5069.  65h    BYTE    first DMA channel used
  5070.  66h    BYTE    second DMA channel in-use flag
  5071.  67h    BYTE    second DMA channel used
  5072.  68h    BYTE    flags
  5073.  69h    BYTE    reserved
  5074.  6Ah 80 BYTEs    ASCIZ configuration description
  5075.  
  5076. Values for channel run state:
  5077.  0000h    running
  5078.  0001h    being stopped
  5079.  0002h    stopped
  5080.  0003h    nonfunctional
  5081.  
  5082. Values for channel synchronization state:
  5083.  0000h    not in use
  5084.  0002h    used by NetWare, no other requests
  5085.  0004h    used by NetWare, other requests
  5086.  0006h    in use, not needed by NetWare
  5087.  0008h    in use, needed by NetWare
  5088.  000Ah    channel released, NetWare should use it
  5089. --------N-21E3--SFDA-------------------------
  5090. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S TASK INFORMATION
  5091.     AH = E3h subfn DAh
  5092.     DS:SI -> request buffer (see below)
  5093.     ES:DI -> reply buffer (see below)
  5094. Return: AL = status
  5095.         00h successful
  5096.         C6h no console rights
  5097. Notes:    this function is supported by Advanced NetWare 2.1+
  5098.     the calling workstation must have console operator privileges
  5099. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h,AH=E3h/SF=E5h
  5100.  
  5101. Format of request buffer:
  5102. Offset    Size    Description
  5103.  00h    WORD    0003h (length of following data)
  5104.  02h    BYTE    DAh (subfunction "Get Connection's Task Information")
  5105.  03h    WORD    (big-endian) logical connection number
  5106.  
  5107. Format of reply buffer:
  5108. Offset    Size    Description
  5109.  00h    WORD    (call) size of following results record (max 1FEh)
  5110.  02h    BYTE    lock status of connection (see below)
  5111.  03h    var    Lock Status Information (see below)
  5112.  N    BYTE    number of records following
  5113.  N+1    Active Task Information Records [array]
  5114.     Offset    Size    Description
  5115.      00h    BYTE    task number (01h-FFh)
  5116.      01h    BYTE    task state
  5117.             01h in TTS explicit transaction
  5118.             02h in TTS implicit transaction
  5119.             04h shared fileset lock active
  5120.  
  5121. Values for lock status of connection:
  5122.  00h    no locks
  5123.  01h    waiting on physical record lock
  5124.  02h    waiting on file lock
  5125.  03h    waiting on logical record lock
  5126.  04h    waiting on semaphore
  5127.  
  5128. Format of Lock Status Information:
  5129. Offset    Size    Description
  5130. ---lock status 00h---
  5131.  no fields
  5132. ---lock status 01h---
  5133.  00h    BYTE    number of waiting task
  5134.  01h    DWORD    start address
  5135.  05h    DWORD    end address
  5136.  09h    BYTE    volume number
  5137.  0Ah    WORD    directory entry number
  5138.  0Ch 14 BYTEs    ASCIZ filename
  5139. ---lock status 02h---
  5140.  00h    BYTE    number of waiting task
  5141.  01h    BYTE    volume number
  5142.  02h    WORD    directory entry number
  5143.  04h 14 BYTEs    ASCIZ filename
  5144. ---lock status 03h---
  5145.  00h    BYTE    number of waiting task
  5146.  01h    BYTE    length of record name
  5147.  02h  N BYTEs    ASCIZ record name
  5148. ---lock status 04h---
  5149.  00h    BYTE    number of waiting task
  5150.  01h    BYTE    length of semaphore's name
  5151.  02h  N BYTEs    ASCIZ semaphore name
  5152. --------N-21E3--SFDB-------------------------
  5153. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S OPEN FILES
  5154.     AH = E3h subfn DBh
  5155.     DS:SI -> request buffer (see below)
  5156.     ES:DI -> reply buffer (see below)
  5157. Return: AL = status
  5158.         00h successful
  5159.         C6h no console rights
  5160. Notes:    this function is supported by Advanced NetWare 2.1+
  5161.     the calling workstation must have console operator privileges
  5162. SeeAlso: AH=E2h/SF=1Ah,AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DCh,AH=E3h/SF=DFh
  5163. SeeAlso: AH=E3h/SF=E1h
  5164.  
  5165. Format of request buffer:
  5166. Offset    Size    Description
  5167.  00h    WORD    0005h (length of following data)
  5168.  02h    BYTE    DBh (subfunction "Get Connection's Open Files")
  5169.  03h    WORD    (big-endian) logical connection number
  5170.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5171.  
  5172. Format of reply buffer:
  5173. Offset    Size    Description
  5174.  00h    WORD    (call) size of following results record (max 1FEh)
  5175.  02h    WORD    next request record (place in "last record" field on next call)
  5176.         0000h if no more records
  5177.  04h    BYTE    number of records following
  5178.  05h    var    array of File Information Records (see below)
  5179.  
  5180. Format of File Information Record:
  5181. Offset    Size    Description
  5182.  00h    BYTE    task number
  5183.  01h    BYTE    lock flags (see below)
  5184.  02h    BYTE    access flags (see below)
  5185.  03h    BYTE    lock type
  5186.         00h no lock
  5187.         FEh file lock
  5188.         FFh locked by Begin Share File Set
  5189.  04h    BYTE    volume number (00h-1Fh)
  5190.  05h    WORD    (big-endian) directory entry
  5191.  07h 14 BYTEs    ASCIZ filename
  5192.  
  5193. Bitfields for lock flags:
  5194.  bit 0    file is locked
  5195.  bit 1    file opened Shareable
  5196.  bit 2    logged
  5197.  bit 3    file opened Normal
  5198.  bit 6    TTS holding lock
  5199.  bit 7    Transaction Flag set on file
  5200.  
  5201. Bitfields for access flags:
  5202.  bit 0    file open for reading by calling station
  5203.  bit 1    file open for writing by calling station
  5204.  bit 2    deny reads by other stations
  5205.  bit 3    deny writes by other stations
  5206.  bit 4    file detached
  5207.  bit 5    TTS Holding Detach
  5208.  bit 6    TTS Holding Open
  5209. --------N-21E3--SFDC-------------------------
  5210. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTIONS USING A FILE
  5211.     AH = E3h subfn DCh
  5212.     DS:SI -> request buffer (see below)
  5213.     ES:DI -> reply buffer (see below)
  5214. Return: AL = status
  5215.         00h successful
  5216.         C6h no console rights
  5217. Notes:    this function is supported by Advanced NetWare 2.1+
  5218.     the calling workstation must have console operator privileges
  5219. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h
  5220.  
  5221. Format of request buffer:
  5222. Offset    Size    Description
  5223.  00h    WORD    length of following data (max 104h)
  5224.  02h    BYTE    DCh (subfunction "Get Connections Using a File")
  5225.  03h    WORD    (big-endian) last record (0000h on first call)
  5226.  05h    BYTE    directory handle
  5227.  06h    BYTE    length of file path
  5228.  07h  N BYTEs    ASCIZ file path
  5229.  
  5230. Format of reply buffer:
  5231. Offset    Size    Description
  5232.  00h    WORD    (call) size of following results record (max 1FEh)
  5233.  02h    WORD    (big-endian) count of tasks which have opened or logged file
  5234.  04h    WORD    (big-endian) count of tasks which have opened file
  5235.  06h    WORD    (big-endian) count of opens for reading
  5236.  08h    WORD    (big-endian) count of opens for writing
  5237.  0Ah    WORD    (big-endian) deny read count
  5238.  0Ch    WORD    (big-endian) deny write count
  5239.  0Eh    WORD    next request record (place in "last record" field on next call)
  5240.         0000h if no more records
  5241.  10h    BYTE    locked flag
  5242.         00h not locked exclusively
  5243.         else locked exclusively
  5244.  11h    BYTE    number of records following
  5245.  12h    var    array of File Usage Information Records (see below)
  5246.  
  5247. Format of File Usage Information Record:
  5248. Offset    Size    Description
  5249.  00h    WORD    (big-endian) logical connection number
  5250.  02h    BYTE    task number
  5251.  03h    BYTE    lock flags (see AH=E3h/SF=DBh)
  5252.  04h    BYTE    access flags (see AH=E3h/SF=DBh)
  5253.  05h    BYTE    lock type
  5254.         00h no lock
  5255.         FEh file lock
  5256.         FFh locked by Begin Share File Set
  5257. --------N-21E3--SFDD-------------------------
  5258. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY CONN&FILE
  5259.     AH = E3h subfn DDh
  5260.     DS:SI -> request buffer (see below)
  5261.     ES:DI -> reply buffer (see below)
  5262. Return: AL = status
  5263.         00h successful
  5264.         C6h no console rights
  5265.         FFh file not open
  5266. Notes:    this function is supported by Advanced NetWare 2.1+
  5267.     the calling workstation must have console operator privileges
  5268. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DEh,AH=E3h/SF=DFh
  5269.  
  5270. Format of request buffer:
  5271. Offset    Size    Description
  5272.  00h    WORD    0016h (length of following data)
  5273.  02h    BYTE    DDh (subfunction "Get Physical Record Locks by Connection and
  5274.             File")
  5275.  03h    WORD    (big-endian) logical connection number
  5276.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5277.  07h    BYTE    volume number (00h-1Fh)
  5278.  08h    WORD    (big-endian) directory handle
  5279.  0Ah 14 BYTEs    ASCIZ filename
  5280.  
  5281. Format of reply buffer:
  5282. Offset    Size    Description
  5283.  00h    WORD    (call) size of following results record (max 1FEh)
  5284.  02h    WORD    next request record (place in "last record" on next call)
  5285.         0000h if no more records
  5286.  04h    BYTE    number of physical record locks
  5287.  05h    BYTE    number of records following
  5288.  06h    var    array of Physical Record Lock Info records (see below)
  5289.  
  5290. Format of Physical Record Lock Info:
  5291. Offset    Size    Description
  5292.  00h    BYTE    task number
  5293.  01h    BYTE    lock status (see below)
  5294.  02h    DWORD    (big-endian) starting offset of record in file
  5295.  06h    DWORD    (big-endian) ending offset of record in file
  5296.  
  5297. Bitfields for lock status:
  5298.  bit 0    exclusive lock
  5299.  bit 1    shareable lock
  5300.  bit 2    logged
  5301.  bit 6    lock held by TTS
  5302. --------N-21E3--SFDE-------------------------
  5303. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY FILE
  5304.     AH = E3h subfn DEh
  5305.     DS:SI -> request buffer (see below)
  5306.     ES:DI -> reply buffer (see below)
  5307. Return: AL = status
  5308.         00h successful
  5309.         C6h no console rights
  5310.         FFh file not open
  5311. Notes:    this function is supported by Advanced NetWare 2.1+
  5312.     the calling workstation must have console operator privileges
  5313. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh
  5314.  
  5315. Format of request buffer:
  5316. Offset    Size    Description
  5317.  00h    WORD    length of following data (max 104h)
  5318.  02h    BYTE    DEh (subfunction "Get Physical Record Locks by File")
  5319.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5320.  05h    BYTE    directory handle
  5321.  06h    BYTE    length of filename
  5322.  07h  N BYTEs    ASCIZ filename
  5323.  
  5324. Format of reply buffer:
  5325. Offset    Size    Description
  5326.  00h    WORD    (call) size of following results record (max 1FEh)
  5327.  02h    WORD    next request record (place in "last record" on next call)
  5328.         0000h if no more records
  5329.  04h    BYTE    number of physical record locks
  5330.  05h    BYTE    number of records following
  5331.  06h    var    array of Physical Record Lock Info records (see below)
  5332.  
  5333. Format of Physical Record Lock Info:
  5334. Offset    Size    Description
  5335.  00h    WORD    (big-endian) number of tasks logging record
  5336.  02h    WORD    (big-endian) number of tasks with shareable lock
  5337.  04h    DWORD    (big-endian) starting offset of record in file
  5338.  08h    DWORD    (big-endian) ending offset of record in file
  5339.  0Ch    WORD    (big-endian) logical connection number
  5340.  0Eh    BYTE    task number
  5341.  0Fh    BYTE    lock type
  5342.         00h none
  5343.         FEh file lock
  5344.         FFh Begin Share File Set lock
  5345. --------N-21E3--SFDF-------------------------
  5346. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORDS BY CONNECTION
  5347.     AH = E3h subfn DFh
  5348.     DS:SI -> request buffer (see below)
  5349.     ES:DI -> reply buffer (see below)
  5350. Return: AL = status
  5351.         00h successful
  5352.         C6h no console rights
  5353. Notes:    this function is supported by Advanced NetWare 2.1+
  5354.     the calling workstation must have console operator privileges
  5355. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=E0h,AH=E3h/SF=E2h
  5356.  
  5357. Format of request buffer:
  5358. Offset    Size    Description
  5359.  00h    WORD    0005h (length of following data)
  5360.  02h    BYTE    DFh (subfunction "Get Logical Records By Connection")
  5361.  03h    WORD    (big-endian) logical connection number
  5362.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5363.  
  5364. Format of reply buffer:
  5365. Offset    Size    Description
  5366.  00h    WORD    (call) size of following results record (max 1FEh)
  5367.  02h    WORD    next request record (place in "last record" field on next call)
  5368.         0000h if no more locked records
  5369.  09h    BYTE    number of records following
  5370.  0Ah    var    array of Logical Lock Information Records (see below)
  5371.  
  5372. Format of Logical Lock Information Record:
  5373. Offset    Size    Description
  5374.  00h    BYTE    task number
  5375.  01h    BYTE    lock status (see AH=E3h/SF=DDh)
  5376.  02h    BYTE    length of logical lock's name
  5377.  03h  N BYTEs    logical lock's name
  5378. --------N-21E3--SFE0-------------------------
  5379. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORD INFORMATION
  5380.     AH = E3h subfn E0h
  5381.     DS:SI -> request buffer (see below)
  5382.     ES:DI -> reply buffer (see below)
  5383. Return: AL = status
  5384.         00h successful
  5385.         C6h no console rights
  5386. Notes:    this function is supported by Advanced NetWare 2.1+
  5387.     the calling workstation must have console operator privileges
  5388. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5389.  
  5390. Format of request buffer:
  5391. Offset    Size    Description
  5392.  00h    WORD    length of following data (max 67h)
  5393.  02h    BYTE    E0h (subfunction "Get Logical Record Information")
  5394.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5395.  05h    BYTE    length of logical record's name
  5396.  06h  N BYTEs    logical record's name
  5397.  
  5398. Format of reply buffer:
  5399. Offset    Size    Description
  5400.  00h    WORD    (call) size of following results record (max 200h)
  5401.  02h    WORD    (big-endian) number of logical connections logging the record
  5402.  04h    WORD    (big-endian) number of logical connections with shareable lock
  5403.  06h    WORD    (big-endian) next request record (place in "last record" field
  5404.             on next call)
  5405.  08h    BYTE    locked exclusively if nonzero
  5406.  09h    BYTE    number of records following
  5407.  0Ah    var    array of Task Information Records (see below)
  5408.  
  5409. Format of Task Information Record:
  5410. Offset    Size    Description
  5411.  00h    WORD    (big-endian) logical connection number
  5412.  02h    BYTE    task number
  5413.  03h    BYTE    lock status (see AH=E3h/SF=DDh)
  5414. --------N-21E3--SFE1-------------------------
  5415. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S SEMAPHORES
  5416.     AH = E3h subfn E1h
  5417.     DS:SI -> request buffer (see below)
  5418.     ES:DI -> reply buffer (see below)
  5419. Return: AL = status
  5420.         00h successful
  5421.         C6h no console rights
  5422. Notes:    this function is supported by Advanced NetWare 2.1+
  5423.     the calling workstation must have console operator privileges
  5424. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5425.  
  5426. Format of request buffer:
  5427. Offset    Size    Description
  5428.  00h    WORD    0005h (length of following data)
  5429.  02h    BYTE    E1h (subfunction "Get Connection's Semaphores")
  5430.  03h    WORD    (big-endian) logical connection number
  5431.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5432.  
  5433. Format of reply buffer:
  5434. Offset    Size    Description
  5435.  00h    WORD    (call) size of following results record (max 1FEh)
  5436.  02h    WORD    next request record (place in "last record" field on next call)
  5437.  04h    BYTE    number of records following
  5438.  05h    var    array of Semaphore Information Records
  5439.  
  5440. Format of Semaphore Information Record:
  5441. Offset    Size    Description
  5442.  00h    WORD    (big-endian) open count
  5443.  02h    BYTE    semaphore value (-128 to 127)
  5444.  03h    BYTE    task number
  5445.  04h    BYTE    lock type
  5446.  05h    BYTE    length of semaphore's name
  5447.  06h  N BYTEs    semaphore's name
  5448.      14 BYTEs    filename
  5449. --------N-21E3--SFE2-------------------------
  5450. INT 21 - Novell NetWare - FILE SERVER - GET SEMAPHORE INFORMATION
  5451.     AH = E3h subfn E2h
  5452.     DS:SI -> request buffer (see below)
  5453.     ES:DI -> reply buffer (see below)
  5454. Return: AL = status
  5455.         00h successful
  5456.         C6h no console rights
  5457. Notes:    this function is supported by Advanced NetWare 2.1+
  5458.     the calling workstation must have console operator privileges
  5459. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E1h
  5460.  
  5461. Format of request buffer:
  5462. Offset    Size    Description
  5463.  00h    WORD    length of following data (max 83h)
  5464.  02h    BYTE    E2h (subfunction "Get LAN Driver's Configuration Information")
  5465.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5466.  05h    BYTE    length of semaphore's name (01h-7Fh)
  5467.  06h  N BYTEs    semaphore's name
  5468.  
  5469. Format of reply buffer:
  5470. Offset    Size    Description
  5471.  00h    WORD    (call) size of following results buffer (max 1FEh)
  5472.  02h    WORD    next request record (place in "last record" on next call)
  5473.         0000h if no more
  5474.  04h    WORD    (big-endian) number of logical connections opening semaphore
  5475.  06h    BYTE    semaphore value (-127 to 128)
  5476.  07h    BYTE    number of records following
  5477.  08h    var    array of Semaphore Information records (see below)
  5478.  
  5479. Format of Semaphore Information:
  5480. Offset    Size    Description
  5481.  00h    WORD    (big-endian) logical connection number
  5482.  02h    BYTE    task number
  5483. --------N-21E3--SFE3-------------------------
  5484. INT 21 - Novell NetWare - FILE SERVER - GET LAN DRIVER'S CONFIGURATION INFO
  5485.     AH = E3h subfn E3h
  5486.     DS:SI -> request buffer (see below)
  5487.     ES:DI -> reply buffer (see below)
  5488. Return: AL = status
  5489.         00h successful
  5490.         C6h no console rights
  5491. Notes:    this function is supported by Advanced NetWare 2.1+
  5492.     the calling workstation must have console operator privileges
  5493. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  5494.  
  5495. Format of request buffer:
  5496. Offset    Size    Description
  5497.  00h    WORD    0002h (length of following data)
  5498.  02h    BYTE    E3h (subfunction "Get LAN Driver's Configuration Information")
  5499.  03h    BYTE    LAN board (00h-03h)
  5500.  
  5501. Format of reply buffer:
  5502. Offset    Size    Description
  5503.  00h    WORD    (call) 00ACh (size of following results buffer)
  5504.  02h  4 BYTEs    network number
  5505.  06h  6 BYTEs    node number
  5506.  0Ch    BYTE    LAN driver installed (00h no--remaining fields invalid)
  5507.  0Dh    BYTE    option number selected at configuration time
  5508.  0Eh 160 BYTEs    configuration text
  5509.         ASCIZ hardware type
  5510.         ASCIZ hardware settings
  5511. --------N-21E3--SFE5-------------------------
  5512. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S USAGE STATISTICS
  5513.     AH = E3h subfn E5h
  5514.     DS:SI -> request buffer (see below)
  5515.     ES:DI -> reply buffer (see below)
  5516. Return: AL = status
  5517.         00h successful
  5518.         C6h no console rights
  5519. Notes:    this function is supported by Advanced NetWare 2.1+
  5520.     one must have console operator privileges to get statistics for logical
  5521.       connections other than one's own
  5522. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=E1h
  5523.  
  5524. Format of request buffer:
  5525. Offset    Size    Description
  5526.  00h    WORD    0003h (length of following data)
  5527.  02h    BYTE    E5h (subfunction "Get Connection's Usage Statistics")
  5528.  03h    WORD    (big-endian) logical connection number
  5529.  
  5530. Format of reply buffer:
  5531. Offset    Size    Description
  5532.  00h    WORD    (call) 0014h (size of following results record)
  5533.  02h    DWORD    (big-endian) clock ticks since server started
  5534.  06h  6 BYTEs    bytes read
  5535.  0Ch  6 BYTEs    bytes written
  5536.  12h    DWORD    (big-endian) total request packets
  5537. --------N-21E3--SFE6-------------------------
  5538. INT 21 - Novell NetWare - FILE SERVER - GET BINDERY OBJECT DISK SPACE LEFT
  5539.     AH = E3h subfn E6h
  5540.     DS:SI -> request buffer (see below)
  5541.     ES:DI -> reply buffer (see below)
  5542. Return: AL = status
  5543.         00h successful
  5544.         C6h no console rights
  5545. Notes:    this function is supported by Advanced NetWare 2.1+
  5546.     one must have console operator privileges to get the free space for
  5547.       other bindery objects
  5548. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E8h,AH=E3h/SF=E9h
  5549.  
  5550. Format of request buffer:
  5551. Offset    Size    Description
  5552.  00h    WORD    0005h (length of following data)
  5553.  02h    BYTE    E6h (subfunction "Get Bindery Object Disk Space Left")
  5554.  03h    DWORD    (big-endian) object ID
  5555.  
  5556. Format of reply buffer:
  5557. Offset    Size    Description
  5558.  00h    WORD    (call) 000Fh (size of following results buffer)
  5559.  02h    DWORD    (big-endian) clock ticks elapsed since server started
  5560.  06h    DWORD    (big-endian) object ID
  5561.  0Ah    DWORD    (big-endian) 4K disk blocks available to user
  5562.  0Eh    BYTE    restrictions (00h enforced, FFh not enforced)
  5563. --------N-21E3--SFE7-------------------------
  5564. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LAN I/O STATISTICS
  5565.     AH = E3h subfn E7h
  5566.     DS:SI -> request buffer (see below)
  5567.     ES:DI -> reply buffer (see below)
  5568. Return: AL = status
  5569.         00h successful
  5570. Note:    this function is supported by Advanced NetWare 2.1+
  5571. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=D3h,AH=E3h/SF=E8h,AH=E7h
  5572.  
  5573. Format of request buffer:
  5574. Offset    Size    Description
  5575.  00h    WORD    0001h (length of following data)
  5576.  02h    BYTE    E7h (subfunction "Get File Server LAN I/O Statistics")
  5577.  
  5578. Format of reply buffer:
  5579. Offset    Size    Description
  5580.  00h    WORD    (call) 0042h (size of following results buffer)
  5581.  02h    DWORD    clock ticks since system started
  5582.  06h    WORD    total routing buffers
  5583.  08h    WORD    maximum routing buffers used
  5584.  0Ah    WORD    current routing buffers used
  5585.  0Ch    DWORD    total file service packets
  5586.  10h    WORD    number of file service packets buffered
  5587.  12h    WORD    number of invalid connection packets
  5588.  14h    WORD    packets with bad logical connection numbers
  5589.  16h    WORD    number of packets received during processing
  5590.  18h    WORD    number of requests reprocessed
  5591.  1Ah    WORD    packets with bad sequence numbers
  5592.  1Ch    WORD    number of duplicate replies sent
  5593.  1Eh    WORD    number of acknowledgements sent
  5594.  20h    WORD    number of packets with bad request types
  5595.  22h    WORD    requests to attach to ws for which a request is being processed
  5596.  24h    WORD    requests to attach from ws which is already attaching
  5597.  26h    WORD    number of forged detach requests
  5598.  28h    WORD    detach requests with bad connection number
  5599.  2Ah    WORD    requests to detach from ws for which requests pending
  5600.  2Ch    WORD    number of cancelled replies
  5601.  2Eh    WORD    packets discarded due to excessive hop count
  5602.  30h    WORD    packets discarded due to unknown net
  5603.  32h    WORD    incoming packets discarded for lack of DGroup buffer
  5604.  34h    WORD    outgoing packets discarded due to lack of buffer
  5605.  36h    WORD    received packets destined for B,C, or D side drivers
  5606.  38h    DWORD    number of NetBIOS packets propagated through net
  5607.  3Ch    DWORD    total number of non-file-service packets
  5608.  40h    DWORD    total number of routed packets
  5609. Note:    all fields except the first are big-endian
  5610. --------N-21E3--SFE8-------------------------
  5611. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER MISC INFORMATION
  5612.     AH = E3h subfn E8h
  5613.     DS:SI -> request buffer (see below)
  5614.     ES:DI -> reply buffer (see below)
  5615. Return: AL = status
  5616.         00h successful
  5617.         C6h no console rights
  5618. Note:    this function is supported by Advanced NetWare 2.1+
  5619. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E7h
  5620.  
  5621. Format of request buffer:
  5622. Offset    Size    Description
  5623.  00h    WORD    0001h (length of following data)
  5624.  02h    BYTE    E8h (subfunction "Get File Server Misc Information")
  5625.  
  5626. Format of reply buffer:
  5627. Offset    Size    Description
  5628.  00h    WORD    (call) size of following results buffer (max 0048h)
  5629.  02h    DWORD    (big-endian) clock ticks since system started
  5630.  06h    BYTE    CPU type
  5631.         00h Motorola 68000
  5632.         01h Intel 8086, 8088, or V20
  5633.         02h Intel 80286+
  5634.  07h    BYTE    reserved
  5635.  08h    BYTE    number of service processes in server
  5636.  09h    BYTE    server utilization in percent
  5637.  0Ah    WORD    (big-endian) maximum bindery objects set by configuration
  5638.         0000h = unlimited
  5639.  0Ch    WORD    (big-endian) maximum number of bindery objects used
  5640.  0Eh    WORD    (big-endian) current number of bindery objects in use
  5641.  10h    WORD    (big-endian) total server memory in KB
  5642.  12h    WORD    (big-endian) wasted server memory in KB
  5643.         normally 0000h
  5644.  14h    WORD    number of records following (01h-03h)
  5645.  16h    var    array of Dynamic Memory Information records (see below)
  5646.  
  5647. Format of Dynamic Memory Information:
  5648. Offset    Size    Description
  5649.  00h    DWORD    (big-endian) total dynamic space
  5650.  04h    DWORD    (big-endian) maximum dynamic space used
  5651.  08h    DWORD    (big-endian) current dynamic space usage
  5652. --------N-21E3--SFE9-------------------------
  5653. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFORMATION
  5654.     AH = E3h subfn E9h
  5655.     DS:SI -> request buffer (see below)
  5656.     ES:DI -> reply buffer (see below)
  5657. Return: AL = status
  5658.         00h successful
  5659. Notes:    this function is supported by Advanced NetWare 2.1+
  5660. SeeAlso: AH=DAh,AH=E2h/SF=15h
  5661.  
  5662. Format of request buffer:
  5663. Offset    Size    Description
  5664.  00h    WORD    0002h (length of following data)
  5665.  02h    BYTE    E9h (subfunction "Get Volume Information")
  5666.  03h    BYTE    directory handle
  5667.  
  5668. Format of reply buffer:
  5669. Offset    Size    Description
  5670.  00h    WORD    (call) 0028h (length of following results buffer)
  5671.  02h    DWORD    (big-endian) elapsed system time
  5672.  06h    BYTE    volume number
  5673.  07h    BYTE    logical drive number
  5674.  08h    WORD    (big-endian) sectors per block
  5675.  0Ah    WORD    (big-endian) starting block
  5676.  0Ch    WORD    (big-endian) total blocks on volume
  5677.  0Eh    WORD    (big-endian) blocks available on volume
  5678.  10h    WORD    (big-endian) total directory slots
  5679.  12h    WORD    (big-endian) directory slots available
  5680.  14h    WORD    (big-endian) maximum directory entries actually used
  5681.  16h    BYTE    flag: volume hashed if nonzero
  5682.  17h    BYTE    flag: volume cached if nonzero
  5683.  18h    BYTE    flag: volume removable if nonzero
  5684.  19h    BYTE    flag: volume mounted if nonzero
  5685.  1Ah 16 BYTEs    NUL-padded volume name
  5686. --------N-21E4-------------------------------
  5687. INT 21 O - Novell NetWare - SET FILE ATTRIBUTES (FCB)
  5688.     AH = E4h
  5689.     CL = file attributes (see below)
  5690.     DX:DX -> FCB (see AH=0Fh)
  5691. Return: AL = error code
  5692. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5693.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5694.       documentation
  5695. SeeAlso: AX=4301h
  5696.  
  5697. Bitfields for file attributes:
  5698.  bit 0    read only
  5699.  bit 1    hidden
  5700.  bit 2    system
  5701.  bit 7    shareable
  5702. --------v-21E4-------------------------------
  5703. INT 21 - VIRUS - "Anarkia" - INSTALLATION CHECK
  5704.     AH = E4h
  5705. Return: AH = 04h if resident
  5706. SeeAlso: AH=E1h"VIRUS",AH=E7h"VIRUS"
  5707. --------T-21E400-----------------------------
  5708. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  5709.     AX = E400h
  5710. Return: AL = 00h if DoubleDOS not present
  5711.        = 01h if running in visible DoubleDOS partition
  5712.        = 02h if running in the invisible DoubleDOS partition
  5713. SeeAlso: AH=E5h"DoubleDOS",AX=F400h
  5714. --------E-21E400-----------------------------
  5715. INT 21 - OS/286, OS/386 - CHAIN TO REAL-MODE HANDLER
  5716.     AX = E400h
  5717.     ???
  5718. Return: ???
  5719. Note:    protected mode only???
  5720. --------E-21E402-----------------------------
  5721. INT 21 - OS/286, OS/386 - SET PROTECTED-MODE TASK GATE
  5722.     AX = E402h
  5723.     ???
  5724. Return: ???
  5725. Note:    protected mode only???
  5726. SeeAlso: AX=E403h
  5727. --------E-21E403-----------------------------
  5728. INT 21 - OS/286, OS/386 - REMOVE PROTECTED-MODE TASK GATE
  5729.     AX = E403h
  5730.     ???
  5731. Return: ???
  5732. Note:    protected mode only???
  5733. SeeAlso: AX=E402h
  5734. --------N-21E5-------------------------------
  5735. INT 21 O - Novell NetWare - UPDATE FILE SIZE (FCB)
  5736.     AH = E5h
  5737.     DS:DX -> FCB (see AH=0Fh)
  5738. Return: AL = (unreliable) return code
  5739. Notes:    this function was added in NetWare 4.0, but was removed some time prior
  5740.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5741.       documentation
  5742.     on success, NetWare sets AL to zero; on errors it restores AL
  5743. Return: AL = error code
  5744. --------T-21E5-------------------------------
  5745. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  5746.     AH = E5h
  5747. Return: AL = 00h no program in other partition
  5748.        = 01h program in other partition is running
  5749.        = 02h program in other partition is suspended
  5750. SeeAlso: AX=E400h"DoubleDOS",AH=F5h"DoubleDOS"
  5751. --------E-21E500-----------------------------
  5752. INT 21 - OS/286, OS/386 - HEAP MANAGEMENT STRATEGY
  5753.     AX = E500h
  5754.     ???
  5755. Return: ???
  5756. SeeAlso: AX=E501h
  5757. --------E-21E501-----------------------------
  5758. INT 21 - OS/286, OS/386 - FORCE HEAP COMPACTION
  5759.     AX = E501h
  5760.     ???
  5761. Return: ???
  5762. SeeAlso: AX=E500h
  5763. --------N-21E6-------------------------------
  5764. INT 21 O - Novell NetWare - COPY FILE TO FILE (FCB)
  5765.     AH = E6h
  5766.     CX:DX = number of bytes to copy
  5767.     DS:SI -> opened source FCB
  5768.     ES:DI -> opened destination FCB
  5769. Return: AL = error code
  5770.     CX = ???
  5771.     DX = ???
  5772. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5773.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5774.       documentation
  5775. --------E-21E6-------------------------------
  5776. INT 21 P - OS/286, OS/386 - ISSUE REAL PROCEDURE SIGNAL FROM PROTECTED MODE
  5777.     AH = E6h
  5778.     ???
  5779. Return: ???
  5780. SeeAlso: AH=E2h"OS/286"
  5781. --------N-21E7-------------------------------
  5782. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DATE AND TIME
  5783.     AH = E7h
  5784.     DS:DX -> date/time buffer (see below)
  5785. Return: AL = error code
  5786.         00h successful
  5787.         FFh unsuccessful
  5788. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  5789.       Alloy NTNX, and Banyan VINES
  5790. SeeAlso: AH=2Ah,AH=2Ch,AX=5FC0h,AH=E3h/SF=CAh
  5791.  
  5792. Format of date/time buffer:
  5793. Offset    Size    Description
  5794.  00h    BYTE    year (80-99 = 1980-1999, 0-79 = 2000-2079)
  5795.  01h    BYTE    month (1=Jan)
  5796.  02h    BYTE    day
  5797.  03h    BYTE    hours
  5798.  04h    BYTE    minutes
  5799.  05h    BYTE    seconds
  5800.  06h    BYTE    day of week (0 = Sunday) (Novell and NTNX only)
  5801. --------E-21E7-------------------------------
  5802. INT 21 - OS/286, OS/386 - CREATE CODE SEGMENT
  5803.     AH = E7h
  5804.     ???
  5805. Return: ???
  5806. SeeAlso: AH=E8h"OS/286",AH=E9h"OS/286",AH=EAh"OS/286"
  5807. --------v-21E7-------------------------------
  5808. INT 21 - VIRUS - "Spyer"/"Kiev" - INSTALLATION CHECK
  5809.     AH = E7h
  5810. Return: AH = 78h if resident
  5811. SeeAlso: AH=E4h"VIRUS",AX=EC59h
  5812. --------N-21E8-------------------------------
  5813. INT 21 O - Novell NetWare, Alloy NTNX - SET FCB RE-OPEN MODE
  5814.     AH = E8h
  5815.     DL = mode
  5816.         00h no automatic re-open
  5817.         01h auto re-open
  5818. Return: AL = error code
  5819. Desc:    provided backward compatibility with a bug in CP/M and early DOS vers
  5820. Note:    this function was added in NetWare 4.6, but was removed some time prior
  5821.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5822.       documentation
  5823. --------E-21E8-------------------------------
  5824. INT 21 - OS/286, OS/386 - SEGMENT CREATION
  5825.     AH = E8h
  5826.     AL = type
  5827.         00h data segment
  5828.         01h data window/alias
  5829.         02h real segment
  5830.         03h real window/alias
  5831.         06h shareable segment
  5832.     ???
  5833. Return: ???
  5834. SeeAlso: AH=E7h"OS/286",AH=E9h"OS/286"
  5835. --------T-21E8-------------------------------
  5836. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  5837.     AH = E8h
  5838.     AL = 00h set flags for this program
  5839.        = 01h set flags for other program
  5840.     DX = keyboard control flags (see below)
  5841. Return: DX = previous flags
  5842. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  5843.       disabling any of the other keystrokes disables them completely
  5844.     identical to AH=F8h
  5845. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E3h"DoubleDOS"
  5846. SeeAlso: AH=F8h"DoubleDOS"
  5847.  
  5848. Bitfields for keyboard control flags:
  5849.  bit 0    menu
  5850.  bit 1    exchange
  5851.  bit 2    entire keyboard enable/disable
  5852.  bit 3    Ctrl-C
  5853.  bit 4    Ctrl-PrtSc
  5854.  bit 5    Alt/Erase
  5855.  bit 6    Ctrl-Break
  5856.  bit 7    Ctrl-NumLock
  5857.  bit 8    shift-PrtSc
  5858.  bit 9-13 undefined
  5859.  bit 14 cancel key (clear keyboard buffer)
  5860.  bit 15 suspend key
  5861. Note:    setting a bit enables the corresponding key or operatin, clearing a
  5862.       bit disables it
  5863. --------E-21E9-------------------------------
  5864. INT 21 P - OS/286, OS/386 - CHANGE SEGMENTS
  5865.     AH = E9h
  5866.     AL = function
  5867.         01h change code segment parameters
  5868.         02h change data segment parameters
  5869.         05h adjust segment limit
  5870.         06h change segment base address
  5871.     ???
  5872. Return: ???
  5873. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=EAh"OS/286",AH=EDh"OS/286"
  5874. SeeAlso: INT 31/AX=0007h,INT 31/AX=0008h
  5875. --------T-21E9-------------------------------
  5876. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  5877.     AH = E9h
  5878.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  5879.        = 01h visible program gets 50%, invisible gets 50%
  5880.        = 02h visible program gets 30%, invisible gets 70%
  5881.        = 03h Top program gets 70%, bottom program gets 30%
  5882.        = 04h Top program gets 30%, bottom program gets 70%
  5883.        = 05h get current priority
  5884.         Return: AL = priority setting
  5885. Note:    identical to AH=F9h
  5886. SeeAlso: AH=EAh"DoubleDOS",AH=EBh"DoubleDOS",AH=F9h"DoubleDOS"
  5887. --------N-21E900-----------------------------
  5888. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY HANDLE
  5889.     AX = E900h
  5890.     DX = drive number to check (0 = A:, ..., 25 = Z:, 26 ... 31)
  5891. Return: AL = directory handle
  5892.     AH = flags (drive not mapped if none set)
  5893.         bit 0: permanent handle
  5894.         bit 1: temporary handle
  5895.         bit 7: mapped to local drive
  5896. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  5897.       Alloy NTNX
  5898. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=01h,AH=E2h/SF=0Ah
  5899. --------N-21E905-----------------------------
  5900. INT 21 - Novell NetWare shell 3.01 - MAP A FAKE ROOT DIRECTORY
  5901.     AX = E905h
  5902.     BL = drive number (0=default, 1=A:, ...)
  5903.     DS:DX -> ASCIZ path for fake root (may include server name or be empty)
  5904. Return: CF set on error
  5905.         AL = error code (03h,0Fh,11h) (see AH=59h)
  5906.     CF clear if successful
  5907. Note:    if drive is not currently mapped, a drive mapping will be created
  5908. SeeAlso: AX=E906h
  5909. --------N-21E906-----------------------------
  5910. INT 21 - Novell NetWare shell 3.01 - DELETE FAKE ROOT DIRECTORY
  5911.     AX = E906h
  5912.     BL = drive number (0=default, 1=A:, ...)
  5913. Note:    drive remains mapped
  5914. SeeAlso: AX=E905h
  5915. --------N-21E907-----------------------------
  5916. INT 21 - Novell NetWare shell 3.01 - GET RELATIVE DRIVE DEPTH
  5917.     AX = E907h
  5918.     BL = drive number (0=default, 1=A:, ...)
  5919. Return: AL = number of directories below the fake root
  5920.         FFh if no fake root assigned
  5921. SeeAlso: AX=E905h
  5922. --------N-21E908BL00-------------------------
  5923. INT 21 - Novell NetWare shell 3.01 - SET SHOW DOTS
  5924.     AX = E908h
  5925.     BL = 00h    don't return '.' or '..' during directory scans
  5926.        = nonzero    directory scans will return '.' or '..' entries
  5927. Return: BL = previous show-dots setting
  5928. --------N-21EA-------------------------------
  5929. INT 21 - Novell NetWare, Alloy NTNX - RETURN SHELL VERSION
  5930.     AH = EAh
  5931.     AL = return version environment string
  5932.         00h        don't return string
  5933.         nonzero    return string in 40-byte buffer pointed to by ES:DI
  5934.         Return: buffer filled with three null-terminated entries:
  5935.             major operating system
  5936.             version
  5937.             hardware type
  5938. Return: AH = operating system (00h = MS-DOS)
  5939.     AL = hardware type
  5940.         00h IBM PC
  5941.         01h Victor 9000
  5942.     BH = major shell version
  5943.     BL = minor shell version
  5944.     CH = (v3.01+) shell type
  5945.         00h conventional memory
  5946.         01h expanded memory
  5947.         02h extended memory
  5948.     CL = shell revision number
  5949. Note:    this function is supported by NetWare 4.6 and Advanced NetWare 1.0+
  5950. --------T-21EA-------------------------------
  5951. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  5952.     AH = EAh
  5953. Return: task switching turned off
  5954. SeeAlso: AH=E9h"DoubleDOS",AH=EBh"DoubleDOS",AH=FAh"DoubleDOS"
  5955. SeeAlso: INT FA"DoubleDOS"
  5956. --------E-21EA-------------------------------
  5957. INT 21 - OS/286, OS/386 - ALLOCATE HUGE SEGMENT
  5958.     AH = EAh
  5959.     ???
  5960. Return: ???
  5961. Note:    protected mode only???
  5962. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=E9h"OS/286"
  5963. --------N-21EB-------------------------------
  5964. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG FILE
  5965.     AH = EBh
  5966.     DS:DX -> ASCIZ filename
  5967.     if function C6h lock mode 01h:
  5968.         AL = flags
  5969.         00h log file only
  5970.         01h lock as well as log file
  5971.             BP = lock timeout in timer ticks (1/18 second)
  5972.             0000h = don't wait if file already locked
  5973. Return: AL = error code
  5974.         00h successful
  5975.         96h no dynamic memory for file
  5976.         FEh timed out
  5977.         FFh failed
  5978. Desc:    add the location and size of the specified file to the log table and
  5979.       optionally lock the file
  5980. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  5981.       Alloy NTNX
  5982. SeeAlso: AH=BCh"NetWare",AH=CAh,AH=D0h,AH=ECh"NetWare",AH=EDh"NetWare"
  5983. --------T-21EB-------------------------------
  5984. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  5985.     AH = EBh
  5986. Return: task switching turned on
  5987. SeeAlso: AH=E9h"DoubleDOS",AH=EAh"DoubleDOS",AH=FBh"DoubleDOS"
  5988. SeeAlso: INT FB"DoubleDOS"
  5989. --------E-21EB00-----------------------------
  5990. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY LINEAR ADDRESS
  5991.     AX = EB00h
  5992.     ???
  5993. Return: ???
  5994. Note:    protected mode only???
  5995. SeeAlso: AX=EB02h,AX=EB04h,INT 31/AX=0506h
  5996. --------E-21EB02-----------------------------
  5997. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 16-BIT SEGMENT:OFFSET
  5998.     AX = EB02h
  5999.     ???
  6000. Return: ???
  6001. Note:    protected mode only???
  6002. SeeAlso: AX=EB00h,AX=EB04h
  6003. --------E-21EB03-----------------------------
  6004. INT 21 - OS/386 VMM - FREE MAPPED PAGES
  6005.     AX = EB03h
  6006.     ???
  6007. Return: ???
  6008. Note:    protected mode only???
  6009. SeeAlso: AX=EB05h,INT 31/AX=0801h
  6010. --------E-21EB04-----------------------------
  6011. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 32-BIT SEGMENT:OFFSET
  6012.     AX = EB04h
  6013.     ???
  6014. Return: ???
  6015. Note:    protected mode only???
  6016. SeeAlso: AX=EB00h,AX=EB02h
  6017. --------E-21EB05-----------------------------
  6018. INT 21 - OS/386 VMM - MAP PAGES
  6019.     AX = EB05h
  6020.     ???
  6021. Return: ???
  6022. Note:    protected mode only???
  6023. SeeAlso: AX=EB03h,INT 31/AX=0800h
  6024. --------E-21EB06-----------------------------
  6025. INT 21 - OS/386 VMM - LOCK PAGES IN MEMORY
  6026.     AX = EB06h
  6027.     ???
  6028. Return: ???
  6029. Note:    protected mode only???
  6030. SeeAlso: AX=EB07h,INT 31/AX=0600h
  6031. --------E-21EB07-----------------------------
  6032. INT 21 - OS/386 VMM - UNLOCK MEMORY PAGES
  6033.     AX = EB07h
  6034.     ???
  6035. Return: ???
  6036. Note:    protected mode only???
  6037. SeeAlso: AX=EB06h,INT 31/AX=0601h
  6038. --------N-21EC-------------------------------
  6039. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE
  6040.     AH = ECh
  6041.     DS:DX -> ASCIZ filename
  6042. Return: AL = status
  6043.         00h successful
  6044.         FFh file not found
  6045. Desc:    unlock the specified file but retain it in the log table
  6046. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6047.       Alloy NTNX
  6048. SeeAlso: AH=CDh,AH=EBh"NetWare",AH=EDh"NetWare"
  6049. --------T-21EC-------------------------------
  6050. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  6051.     AH = ECh
  6052. Return: ES = segment of virtual screen
  6053. Desc:    determine the address of the virtual screen to which the program
  6054.       should write instead of the actual video memory, so that the
  6055.       multitasked programs do not interfere with each other's output
  6056. Notes:    screen address can change if task-switching is on!!
  6057.     identical to AH=FCh
  6058. SeeAlso: INT 10/AH=FEh,AH=FCh"DoubleDOS",INT FC"DoubleDOS"
  6059. --------E-21EC-------------------------------
  6060. INT 21 - OS/286, OS/386 - BLOCK TRANSFER
  6061.     AH = ECh
  6062.     ???
  6063. Return: ???
  6064. --------v-21EC59-----------------------------
  6065. INT 21 - VIRUS - "Terror" - INSTALLATION CHECK
  6066.     AX = EC59h
  6067. Return: BP = EC59h if resident
  6068. SeeAlso: AH=E7h"VIRUS",AH=EEh"VIRUS"
  6069. --------N-21ED-------------------------------
  6070. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE
  6071.     AH = EDh
  6072.     DS:DX -> ASCIZ filename
  6073. Return: AL = status
  6074.         00h successful
  6075.         FFh no files found
  6076. Desc:    unlock the file and remove it from the log table
  6077. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6078.       Alloy NTNX
  6079. SeeAlso: AH=CBh"NetWare",AH=CEh,AH=CFh,AH=EBh"NetWare",AH=ECh"NetWare"
  6080. --------E-21ED-------------------------------
  6081. INT 21 - OS/286, OS/386 - GET SEGMENT OR WINDOW DESCRIPTOR
  6082.     AH = EDh
  6083.     ???
  6084. Return: ???
  6085. Note:    protected mode only???
  6086. SeeAlso: AH=E9h"OS/286"
  6087. --------N-21EE-------------------------------
  6088. INT 21 - Novell NetWare - CONNECTION SERVICES - GET PHYSICAL STATION ADDRESS
  6089.     AH = EEh
  6090. Return: CX:BX:AX = six-byte physical address
  6091. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6092.       Alloy NTNX
  6093. SeeAlso: AH=E3h/SF=13h
  6094. --------T-21EE-------------------------------
  6095. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  6096.     AH = EEh
  6097.     AL = number of 55ms time slices to give away
  6098. Return: returns after giving away time slices
  6099. SeeAlso: AH=FEh"DoubleDOS",INT FE"DoubleDOS"
  6100. --------v-21EE-------------------------------
  6101. INT 21 - VIRUS - "Jerusalem-G", "Pregnant" - INSTALLATION CHECK
  6102.     AH = EEh
  6103. Return: AX = 0300h if "Jerusalem-G" resident
  6104.     AL = 05h if "Pregnant" resident
  6105. SeeAlso: AH=DDh"VIRUS",AX=EC59h,AH=F0h"VIRUS"
  6106. --------N-21EF00-----------------------------
  6107. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE HANDLE TABLE
  6108.     AX = EF00h
  6109. Return: ES:SI -> network shell's 32-byte drive handle table
  6110.     AX = 0000h
  6111. Notes:    this function is supported by Advanced NetWare 1.0+
  6112.     each byte in the drive handle table contains the directory handle for
  6113.       the corresponding drive, or 00h if not mapped to a directory
  6114. SeeAlso: AX=EF01h,AX=EF02h,AX=EF03h,AX=EF04h
  6115. --------N-21EF01-----------------------------
  6116. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE FLAG TABLE
  6117.     AX = EF01h
  6118. Return: ES:SI -> network shell's 32-byte drive flag table (see below)
  6119.     AX = 0000h
  6120. Notes:    this function is supported by Advanced NetWare 1.0+
  6121.     each byte in the drive flag table corresponds to a drive
  6122. SeeAlso: AX=EF00h,AX=EF02h,AX=EF03h
  6123.  
  6124. Values in drive flag table:
  6125.  00h    drive is not mapped
  6126.  01h    permanent network drive
  6127.  02h    temporary network drive
  6128.  80h    mapped to local drive
  6129.  81h    local drive used as permanent network drive
  6130.  82h    local drive used as temporary network drive
  6131. --------N-21EF02-----------------------------
  6132. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE CONNECTION ID TABLE
  6133.     AX = EF02h
  6134. Return: ES:SI -> network shell's 32-byte drive conection ID table
  6135.     AX = 0000h
  6136. Notes:    this function is supported by Advanced NetWare 1.0+
  6137.     each byte in the connection ID table corresponds to a drive and
  6138.       contains either the connection ID (1-8) of the server for that drive
  6139.       or 00h if the drive is not mapped to a file server
  6140. SeeAlso: AX=EF01h,AX=EF03h,AX=F002h
  6141. --------N-21EF03-----------------------------
  6142. INT 21 - Novell NetWare - WORKSTATION - GET CONNECTION ID TABLE
  6143.     AX = EF03h
  6144. Return: ES:SI -> network shell's connection ID table (see below)
  6145.     AX = 0000h
  6146. Note:    this function is supported by Advanced NetWare 1.0+
  6147. SeeAlso: AX=EF00h,AX=EF02h,AX=EF04h,AX=F002h
  6148.  
  6149. Format of connection ID table [one entry of eight-element array]:
  6150. Offset    Size    Description
  6151.  00h    BYTE    in use flag
  6152.         E0h AES temporary
  6153.         F8h IPX in critical section
  6154.         FAh processing
  6155.         FBh holding
  6156.         FCh AES waiting
  6157.         FDh waiting
  6158.         FEh receiving
  6159.         FFh sending
  6160.  01h    BYTE    order number assigned to server (1-8)
  6161.  02h    DWORD    (big-endian) file server's network address
  6162.  06h  6 BYTEs    (big-endian) file server's node address
  6163.  0Ch    WORD    (big-endian) socket number
  6164.  0Eh    WORD    (big-endian) base receive timeout in clock ticks
  6165.  10h  6 BYTEs    (big-endian) preferred routing node
  6166.  16h    BYTE    packet sequence number
  6167.  17h    BYTE    connection number (FFh = no connection)
  6168.  18h    BYTE    connection status (00h if active)
  6169.  19h    WORD    (big-endian) maximum receive timeout in clock ticks
  6170.  1Bh  5 BYTEs    reserved
  6171. --------N-21EF04-----------------------------
  6172. INT 21 - Novell NetWare - WORKSTATION - GET FILE SERVER NAME TABLE
  6173.     AX = EF04h
  6174. Return: ES:SI -> network shell's file server name table (see below)
  6175.     AX = 0000h
  6176. Notes:    this function is supported by Advanced NetWare 1.0+
  6177.     the name table consists of eight 48-byte entries, each consisting of
  6178.       an ASCIZ server name for the corresponding entry in the connection
  6179.       ID table
  6180. SeeAlso: AX=EF03h
  6181. --------T-21F0-------------------------------
  6182. INT 21 - DoubleDOS - MENU CONTROL
  6183.     AH = F0h
  6184.     AL = subfunction
  6185.         01h exchange tasks
  6186.         73h resume invisible job if suspended
  6187.         74h kill other job
  6188.         75h suspend invisible job
  6189. Note:    identical to AH=E0h
  6190. SeeAlso: AH=E0h"DoubleDOS"
  6191. --------v-21F0-------------------------------
  6192. INT 21 - VIRUS - "Frere Jacques" - INSTALLATION CHECK
  6193.     AH = F0h
  6194. Return: AX = 0300h if resident
  6195. SeeAlso: AH=EEh"VIRUS",AH=F1h"VIRUS"
  6196. --------N-21F000-----------------------------
  6197. INT 21 - Novell NetWare - WORKSTATION - SET PREFERRED CONNECTION ID
  6198.     AX = F000h
  6199.     DL = connection ID of prefered file server (1-8) or 00h for none
  6200. Notes:    this function is supported by Advanced NetWare 1.0+
  6201.     the preferred connection ID is set to 00h by the shell on EOJ
  6202. SeeAlso: AH=D6h,AX=EF03h,AX=F001h,AX=F002h,AX=F005h
  6203. --------N-21F001-----------------------------
  6204. INT 21 - Novell NetWare - WORKSTATION - GET PREFERRED CONNECTION ID
  6205.     AX = F001h
  6206. Return: AL = connection ID of preferred file server (1-8), 00h if not set
  6207. Notes:    this function is supported by Advanced NetWare 1.0+
  6208.     the preferred connection ID is set to 00h by the shell on EOJ
  6209. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6210. --------N-21F002-----------------------------
  6211. INT 21 - Novell NetWare - WORKSTATION - GET DEFAULT CONNECTION ID
  6212.     AX = F002h
  6213. Return: AL = connection ID of current default file server (1-8) (see AX=EF03h)
  6214. Note:    this function is supported by Advanced NetWare 1.0+
  6215. SeeAlso: AX=EF03h,AX=F000h,AX=F004h
  6216. --------N-21F003-----------------------------
  6217. INT 21 - Novell NetWare - PRINT SERVICES - GET LPT CAPTURE STATUS
  6218.     AX = F003h
  6219. Return: AH = status
  6220.         00h not active
  6221.         FFh active
  6222.         AL = connection ID (01h-08h)
  6223. Note:    this function is supported by Advanced NetWare 1.0+
  6224. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h,AH=DFh/DL=04h
  6225. --------N-21F004-----------------------------
  6226. INT 21 - Novell NetWare - WORKSTATION - SET PRIMARY CONNECTION ID
  6227.     AX = F004h
  6228.     DL = connection ID of primary file server (1-8) or 00h for none
  6229. Note:    this function is supported by Advanced NetWare 2.0+
  6230. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6231. --------N-21F005-----------------------------
  6232. INT 21 - Novell NetWare - WORKSTATION - GET PRIMARY CONNECTION ID
  6233.     AX = F005h
  6234. Return: AL = connection ID of primary file server (1-8), 00h if not set
  6235. Notes:    this function is supported by Advanced NetWare 2.0+
  6236.     by default, the primary file server is the one from which the login
  6237.       script executed; it is set to 00h if the workstation is not logged in
  6238.       and when it detaches from its primary file server
  6239. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F004h
  6240. --------N-21F1-------------------------------
  6241. INT 21 - Novell NetWare - CONNECTION SERVICES - FILE SERVER CONNECTION
  6242.     AH = F1h
  6243.     AL = subfunction
  6244.         00h attach to file server
  6245.         DL = preferred file server (01h-08h)
  6246.         01h detach from file server
  6247.         DL = connection ID
  6248.         02h logout from file server
  6249.         DL = connection ID
  6250. Return: AL = status
  6251.         00h successful
  6252.         F8h already attached to server
  6253.         F9h connection table full
  6254.         FAh no more server slots
  6255.         FCh unknown file server
  6256.         FEh server bindery locked
  6257.         FFh no response from server, or connection does not exist
  6258. Note:    these functions are supported by Advanced NetWare 1.0+
  6259. SeeAlso: AH=D7h"NetWare",AH=E3h/SF=14h
  6260. --------T-21F1-------------------------------
  6261. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  6262.     AH = F1h
  6263. SeeAlso: AH=E1h"DoubleDOS",AH=F2h"DoubleDOS",AH=F3h"DoubleDOS"
  6264. SeeAlso: AH=F8h"DoubleDOS"
  6265. --------v-21F1-------------------------------
  6266. INT 21 - VIRUS - "F1-337" - ???
  6267.     AH = F1h
  6268.     ???
  6269. Return: ???
  6270. SeeAlso: AH=F0h"VIRUS",AX=F1E9h
  6271. --------v-21F1E9-----------------------------
  6272. INT 21 - VIRUS - "Tremor" - INSTALLATION CHECK
  6273.     AX = F1E9h
  6274. Return: AX = installation state
  6275.         CADEh installed, and calling program is infected
  6276.         F100h not installed (normal DOS return value)
  6277.         else  installed, but calling program is not infected
  6278. SeeAlso: AH=F1h"VIRUS",AX=F2AAh
  6279. --------N-21F2-------------------------------
  6280. INT 21 u - Novell NetWare v3.01+ shell interface - MULTIPLEXOR
  6281.     AH = F2h
  6282.     AL = function
  6283.         15h broadcast services (see AH=E1h"NetWare")
  6284.         16h file/directory services (see AH=E2h"NetWare")
  6285.         17h connection control (see AH=E3h"NetWare")
  6286.     CX = length of request buffer in bytes
  6287.     DX = length of reply buffer in bytes
  6288.     DS:SI -> request buffer (contents vary by function)
  6289.     ES:DI -> reply buffer (contents vary by function)
  6290. Return: AL = status
  6291.     reply buffer filled as appropriate for function
  6292. Note:    this is a multiplexor providing a "raw" interface to the underlying
  6293.       Netware Core Protocol.  Many functions which were accessed via a
  6294.       separate AH function in older versions can also be accessed here
  6295.       (the function number in AL is added to CCh to get the old function
  6296.       number which is desired), but some NetWare 3.x calls appear to be
  6297.       available only here.
  6298. SeeAlso: AX=F244h
  6299. --------T-21F2-------------------------------
  6300. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  6301.     AH = F2h
  6302.     AL = character
  6303. Return: AL = 00h successful
  6304.          01h buffer full (128 characters)
  6305. SeeAlso: AH=E2h"DoubleDOS",AH=F1h"DoubleDOS",AH=F3h"DoubleDOS"
  6306. SeeAlso: AH=F8h"DoubleDOS"
  6307. --------N-21F244-----------------------------
  6308. INT 21 - Novell NetWare - FILE SERVICES - ERASE FILES
  6309.     AX = F244h
  6310.     DS:SI -> request buffer (see below)
  6311.     ES:DI -> reply buffer (ignored???)
  6312. Return: AL = status
  6313.         00h successful
  6314.         98h nonexistent volume
  6315.         9Bh invaid directory handle
  6316.         9Ch invalid path
  6317.         FFh no files found
  6318. Note:    this function only marks the file for deletion; use AH=E2h/SF=CEh to
  6319.       actually delete all marked files
  6320. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=0Bh,AH=E3h/SF=CEh
  6321.  
  6322. Format of request buffer:
  6323. Offset    Size    Description
  6324.  00h    BYTE    directory handle
  6325.  01h    BYTE    search attributes (see AX=4301h)
  6326.  02h    BYTE    length of filespec
  6327.  03h  N BYTEs    ASCIZ filespec (may include wildcards)
  6328. --------v-21F2AA-----------------------------
  6329. INT 21 - VIRUS - "PcVrsDs" - INSTALLATION CHECK
  6330.     AX = F2AAh
  6331. Return: AH = AAh if resident
  6332. SeeAlso: AH=F1h"VIRUS",AH=F3h"VIRUS"
  6333. --------N-21F3-------------------------------
  6334. INT 21 - Novell NetWare - FILE SERVICES - FILE SERVER FILE COPY
  6335.     AH = F3h
  6336.     ES:DI -> request buffer (see below)
  6337. Return: AL = status/error code
  6338.     CX:DX = number of bytes copied
  6339. Notes:    this function is supported by Advanced NetWare 2.0+
  6340.     both source and destination must be on the same file server
  6341. SeeAlso: AH=3Ch,AH=3Fh
  6342.  
  6343. Format of request buffer:
  6344. Offset    Size    Description
  6345.  00h    WORD    source file handle (as returned by AH=3Ch or AH=3Dh)
  6346.  02h    WORD    destination file handle
  6347.  04h    DWORD    starting offset in source
  6348.  08h    DWORD    starting offset in destination
  6349.  0Ch    DWORD    number of bytes to copy
  6350. --------T-21F3-------------------------------
  6351. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  6352.     AH = F3h
  6353.     AL = character
  6354. Return: AL = 00h successful
  6355.          01h buffer full (128 characters)
  6356. SeeAlso: AH=E3h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6357. SeeAlso: AH=F8h"DoubleDOS"
  6358. --------v-21F3-------------------------------
  6359. INT 21 - VIRUS - "Carfield" - INSTALLATION CHECK
  6360.     AH = F3h
  6361. Return: AX = 0400h if resident
  6362. SeeAlso: AH=D5h"Carfield",AX=F2AAh,AH=F7h"VIRUS"
  6363. --------T-21F400-----------------------------
  6364. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  6365.     AX = F400h
  6366. Return: AL = 00h if DoubleDOS not present
  6367.        = 01h if running in visible DoubleDOS partition
  6368.        = 02h if running in the invisible DoubleDOS partition
  6369. SeeAlso: AX=E400h,AH=F5h"DoubleDOS"
  6370. --------T-21F5-------------------------------
  6371. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  6372.     AH = F5h
  6373. Return: AL = 00h no program in other partition
  6374.        = 01h program in other partition is running
  6375.        = 02h program in other partition is suspended
  6376. SeeAlso: AH=E5h"DoubleDOS",AX=F400h"DoubleDOS"
  6377. --------v-21F7-------------------------------
  6378. INT 21 - VIRUS - "GP1" - INSTALLATION CHECK
  6379.     AH = F7h
  6380. Return: AX = 0300h if resident
  6381. SeeAlso: AH=F0h"VIRUS",AH=FBh"VIRUS"
  6382. --------D-21F8-------------------------------
  6383. INT 21 - DOS v2.11 - SET OEM INT 21 HANDLER
  6384.     AH = F8h
  6385.     DS:DX -> OEM INT 21 handler for functions F9h to FFh
  6386.          FFFFh:FFFFh disables OEM handler
  6387. Notes:    this function is supported by Toshiba T1000 ROM MS-DOS 2.11
  6388.     calls to AH=F9h through AH=FFH will return AL=00h if no handler set
  6389.     handler is called with all registers exactly as set by caller, and
  6390.       should exit with IRET
  6391. SeeAlso: AH=F9h"OEM"
  6392. --------T-21F8-------------------------------
  6393. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  6394.     AH = F8h
  6395.     AL = 00h set flags for this program
  6396.        = 01h set flags for other program
  6397.     DX = keyboard control flags (see AH=E8h"DoubleDOS")
  6398. Return: DX = previous flags
  6399. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  6400.       disabling any of the other keystrokes disables them completely
  6401.     this function is identical to AH=E8h
  6402. SeeAlso: AH=E8h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6403. SeeAlso: AH=F3h"DoubleDOS"
  6404. --------D-21F9-------------------------------
  6405. INT 21 - DOS v2.11 - OEM FUNCTION
  6406.     AH = F9h
  6407. SeeAlso: AH=F8h"OEM",AH=FAh"OEM"
  6408. --------T-21F9-------------------------------
  6409. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  6410.     AH = F9h
  6411.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  6412.        = 01h visible program gets 50%, invisible gets 50%
  6413.        = 02h visible program gets 30%, invisible gets 70%
  6414.        = 03h Top program gets 70%, bottom program gets 30%
  6415.        = 04h Top program gets 30%, bottom program gets 70%
  6416.        = 05h get current priority
  6417.         Return: AL = priority setting
  6418. Note:    identical to AH=E9h
  6419. SeeAlso: AH=E9h"DoubleDOS",AH=FAh"DoubleDOS",AH=FBh"DoubleDOS"
  6420. --------D-21FA-------------------------------
  6421. INT 21 - DOS v2.11 - OEM FUNCTION
  6422.     AH = FAh
  6423. SeeAlso: AH=F8h"OEM",AH=F9h"OEM",AH=FBh"OEM"
  6424. --------T-21FA-------------------------------
  6425. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  6426.     AH = FAh
  6427. Return: task switching turned off
  6428. SeeAlso: AH=EAh"DoubleDOS",AH=F9h"DoubleDOS",AH=FBh"DoubleDOS"
  6429. SeeAlso: INT FA"DoubleDOS"
  6430. --------v-21FA--DX5945-----------------------
  6431. INT 21 U - PC Tools v7+ VDEFEND, VSAFE, VWATCH - API
  6432.     AH = FAh
  6433.     DX = 5945h
  6434.     AL = function (00h-02h for VDEFEND, 00h-07h for VSAFE and VWATCH)
  6435. Return: varies by function
  6436. Note:    this API is identical to the API on INT 13/AH=FAh and INT 16/AH=FAh,
  6437.       so it is listed in its entirety only under INT 16/AX=FA00h and
  6438.       following
  6439. SeeAlso: INT 13/AX=FA00h,INT 16/AX=FA00h
  6440. --------D-21FB-------------------------------
  6441. INT 21 - DOS v2.11 - OEM FUNCTION
  6442.     AH = FBh
  6443. SeeAlso: AH=F8h"OEM",AH=FAh"OEM",AH=FCh"OEM"
  6444. --------T-21FB-------------------------------
  6445. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  6446.     AH = FBh
  6447. Return: task switching turned on
  6448. SeeAlso: AH=EBh"DoubleDOS",AH=F9h"DoubleDOS",AH=FAh"DoubleDOS"
  6449. SeeAlso: INT FB"DoubleDOS"
  6450. --------v-21FB-------------------------------
  6451. INT 21 - VIRUS - "Cinderella" - INSTALLATION CHECK
  6452.     AH = FBh
  6453. Return: AH = 00h if resident
  6454. SeeAlso: AH=F7h"VIRUS",AX=FB0Ah
  6455. --------v-21FB0A-----------------------------
  6456. INT 21 - VIRUS - "dBASE" - INSTALLATION CHECK
  6457.     AX = FB0Ah
  6458. Return: AX = 0AFBh if resident
  6459. SeeAlso: AH=FBh"VIRUS",AH=FCh"VIRUS"
  6460. --------D-21FC-------------------------------
  6461. INT 21 - DOS v2.11 - OEM FUNCTION
  6462.     AH = FCh
  6463. SeeAlso: AH=F8h"OEM",AH=FBh"OEM",AH=FDh"OEM"
  6464. --------T-21FC-------------------------------
  6465. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  6466.     AH = FCh
  6467. Return: ES = segment of virtual screen
  6468. Desc:    Determine the address of the virtual screen to which the program
  6469.       should write instead of the actual video memory, so that the
  6470.       multitasked programs do not interfere with each other's output.
  6471. Notes:    screen address can change if task-switching is on!!
  6472.     identical to AH=ECh
  6473. SeeAlso: AH=ECh"DoubleDOS",INT FC"DoubleDOS"
  6474. --------v-21FC-------------------------------
  6475. INT 21 - VIRUS - "Troi" - INSTALLATION CHECK
  6476.     AH = FCh
  6477. Return: AL = A5h if resident
  6478. SeeAlso: AX=FB0Ah"VIRUS",AH=FDh"VIRUS"
  6479. --------D-21FD-------------------------------
  6480. INT 21 - DOS v2.11 - OEM FUNCTION
  6481.     AH = FDh
  6482. SeeAlso: AH=F8h"OEM",AH=FCh"OEM",AH=FEh"DOS"
  6483. --------v-21FD-------------------------------
  6484. INT 21 - VIRUS - "Border" - INSTALLATION CHECK
  6485.     AH = FDh
  6486. Return: AH = 13h if resident
  6487. SeeAlso: AH=FCh"VIRUS",AH=FEh"VIRUS"
  6488. --------D-21FE-------------------------------
  6489. INT 21 - DOS v2.11 - OEM FUNCTION
  6490.     AH = FEh
  6491. SeeAlso: AH=F8h"OEM",AH=FDh"OEM",AH=FFh"OEM"
  6492. --------T-21FE-------------------------------
  6493. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  6494.     AH = FEh
  6495.     AL = number of 55ms time slices to give away
  6496. Return: returns after giving away time slices
  6497. SeeAlso: AH=EEh"DoubleDOS",INT FE"DoubleDOS"
  6498. --------v-21FE-------------------------------
  6499. INT 21 - VIRUS - "483" - INSTALLATION CHECK
  6500.     AH = FEh
  6501. Return: AH = 00h if resident
  6502. SeeAlso: AH=FDh"VIRUS",AX=FE01h
  6503. --------v-21FE01-----------------------------
  6504. INT 21 - VIRUS - "Flip" - INSTALLATION CHECK
  6505.     AX = FE01h
  6506. Return: AX = 01FEh if resident
  6507. SeeAlso: AH=FEh"VIRUS",AX=FE02h
  6508. --------v-21FE02-----------------------------
  6509. INT 21 - VIRUS - "2468"/"Tequila" - INSTALLATION CHECK
  6510.     AX = FE02h
  6511. Return: AX = 01FDh if resident
  6512. SeeAlso: AX=FE01h,AX=FE03h,AX=FEDCh"VIRUS"
  6513. --------v-21FE03-----------------------------
  6514. INT 21 - VIRUS - "2468"/"Tequila" - DISPLAY VIRUS MESSAGE
  6515.     AX = FE03h
  6516. SeeAlso: AX=FE02h
  6517. --------d-21FEDC-----------------------------
  6518. INT 21 - PCMag PCMANAGE/DCOMPRES - INSTALLATION CHECK
  6519.     AX = FEDCh
  6520. Return: AX = CDEFh if installed
  6521. Program: the PCMANAGE/DCOMPRES combination from PC Magazine permits
  6522.       infrequently-used files to be compressed to save space and
  6523.       transparently expanded when accessed
  6524. SeeAlso: AH=DCh,INT 2D/AL=10h"dLite"
  6525. --------v-21FEDC-----------------------------
  6526. INT 21 - VIRUS - "Black Monday" - INSTALLATION CHECK
  6527.     AX = FEDCh
  6528. Return: AL = DCh if resident
  6529. SeeAlso: AX=FE02h,AH=FFh"VIRUS"
  6530. --------D-21FF-------------------------------
  6531. INT 21 - DOS v2.11 - OEM FUNCTION
  6532.     AH = FFh
  6533. SeeAlso: AH=F8h"OEM",AH=FEh"OEM"
  6534. --------K-21FF-------------------------------
  6535. INT 21 - CED (Command EDitor) - INSTALLABLE COMMANDS
  6536.     AH = FFH
  6537.     AL = subfunction
  6538.         00h add installable command
  6539.            BL = mode - bit 0 = 1 callable from DOS prompt
  6540.                bit 1 = 1 callable from application
  6541.            DS:SI -> CR-terminated command name
  6542.            ES:DI -> FAR routine entry point
  6543.         01h remove installable command
  6544.            DS:SI -> CR-terminated command name
  6545.         02h reserved, may be used to test for CED installation
  6546. Return: CF clear if successful
  6547.     CF set on error
  6548.         AX = 01h invalid function
  6549.          02h command not found (subfunction 01h only)
  6550.          08h insufficient memory (subfunction 00h only)
  6551.          0Eh bad data (subfunction 00h only)
  6552.     AH = FFh if CED not installed
  6553. Program: CED is a shareware DOS command-line enhancer by Christopher J. Dunford
  6554. SeeAlso: AX=0A00h
  6555. --------E-21FF-------------------------------
  6556. INT 21 - DJ GO32.EXE 80386+ DOS extender - DOS EXTENSIONS
  6557.     AH = FFh
  6558.     AL = function
  6559.         01h create file
  6560.         02h open file
  6561.         03h get file statistics
  6562.         04h get time of day
  6563.         05h set time of day
  6564.         06h stat
  6565.         07h system
  6566. Program: GO32.EXE is a DOS extender included as part of the 80386 port of the
  6567.       GNU C/C++ compiler by DJ Delorie and distributed as DJGPP
  6568. SeeAlso: INT 10/AH=FFh"GO32"
  6569. --------K-21FF-------------------------------
  6570. INT 21 - DOSED.COM - INSTALLATION CHECK
  6571.     AH = FFh
  6572.     DS:SI -> "DOSED"
  6573.     ES = 0000h
  6574. Return: ES:DI -> "DOSED" if installed
  6575. Program: DOSED is a free DOS commandline editor/history buffer by Sverre H.
  6576.       Huseby
  6577. --------N-21FF-------------------------------
  6578. INT 21 - Topware Network Operating System - ???
  6579.     AH = FFh
  6580.     ???
  6581. Return: ???
  6582. SeeAlso: INT 2F/AX=FF00h
  6583. --------v-21FF-------------------------------
  6584. INT 21 - VIRUS - "Sunday", "Tumen 0.5", "Hero" - INSTALLATION CHECK
  6585.     AH = FFh
  6586. Return: AH = 00h if "Tumen 0.5" or "Hero" resident
  6587.     AX = 0400h if "Sunday" resident
  6588. SeeAlso: AX=FEDCh"VIRUS",AX=FF0Fh
  6589. --------E-21FF-------------------------------
  6590. INT 21 UP - Rational Systems DOS/4GW - API
  6591.     AH = FFh
  6592.     DH = function (00h-17h) (see also separate entries below)
  6593.     DL = subfunction or argument
  6594. Return: CF clear if valid function number
  6595.         AX = status???
  6596.     CF set if invalid function
  6597. SeeAlso: INT 15/AX=BFDCh
  6598. --------E-21FF--DH02-------------------------
  6599. INT 21 UP - Rational Systems DOS/4GW - SET ???
  6600.     AH = FFh
  6601.     DH = 02h
  6602.     DL = ???
  6603. Return: CF clear
  6604. --------E-21FF--DH05-------------------------
  6605. INT 21 UP - Rational Systems DOS/4GW - ???
  6606.     AH = FFh
  6607.     DH = 05h
  6608.     BX = ???
  6609. Return: ???
  6610. --------E-21FF--DH06-------------------------
  6611. INT 21 UP - Rational Systems DOS/4GW - ???
  6612.     AH = FFh
  6613.     DH = 06h
  6614.     BX = ???
  6615. Return: ???
  6616. --------E-21FF--DH07-------------------------
  6617. INT 21 UP - Rational Systems DOS/4GW - ???
  6618.     AH = FFh
  6619.     DH = 07h
  6620.     BX = ???
  6621. Return: ???
  6622. --------E-21FF--DH08-------------------------
  6623. INT 21 UP - Rational Systems DOS/4GW - ???
  6624.     AH = FFh
  6625.     DH = 08h
  6626.     BX = ???
  6627.     CX = ???
  6628.     ES = ???
  6629. Return: ???
  6630. --------E-21FF--DH09-------------------------
  6631. INT 21 UP - Rational Systems DOS/4GW - GET ???
  6632.     AH = FFh
  6633.     DH = 09h
  6634. Return: ES:BX -> ???
  6635. --------E-21FF--DH0A-------------------------
  6636. INT 21 UP - Rational Systems DOS/4GW - ???
  6637.     AH = FFh
  6638.     DH = 0Ah
  6639.     AL = ???
  6640.     BX = ???
  6641.     CX = ???
  6642. Return: ES = ??? or 0000h
  6643. --------E-21FF--DH0B-------------------------
  6644. INT 21 UP - Rational Systems DOS/4GW - ???
  6645.     AH = FFh
  6646.     DH = 0Bh
  6647.     AL = ???
  6648.     BX = ???
  6649.     CX = ???
  6650. Return: ???
  6651. --------E-21FF--DH0C-------------------------
  6652. INT 21 UP - Rational Systems DOS/4GW - GET/SET ???
  6653.     AH = FFh
  6654.     DH = 0Ch
  6655.     DL = ??? (00h or 01h)
  6656. Return: CF clear if successful
  6657.         AL = previous value of ???
  6658.     CF set on error (DL out of range)
  6659.         AX = FFFFh
  6660. --------E-21FF--DH0D-------------------------
  6661. INT 21 UP - Rational Systems DOS/4GW - ???
  6662.     AH = FFh
  6663.     DH = 0Dh
  6664.     ???
  6665. Return: ???
  6666. --------E-21FF--DH0E-------------------------
  6667. INT 21 UP - Rational Systems DOS/4GW - ???
  6668.     AH = FFh
  6669.     DH = 0Eh
  6670. Return: DX:AX -> XBRK structure (see INT 15/AX=BF02h)
  6671.     BX = ???
  6672.     CX = ???
  6673. SeeAlso: INT 15/AX=BF02h
  6674. --------E-21FF--DH0F-------------------------
  6675. INT 21 UP - Rational Systems DOS/4GW - ???
  6676.     AH = FFh
  6677.     DH = 0Fh
  6678.     ???
  6679. Return: ???
  6680. --------E-21FF--DH10-------------------------
  6681. INT 21 UP - Rational Systems DOS/4GW - ???
  6682.     AH = FFh
  6683.     DH = 10h
  6684.     AL = ???
  6685.     BX = ???
  6686.     CX = ???
  6687.     DI = ???
  6688.     SI = ???
  6689. Return: ???
  6690. Note:    among other things, frees two memory blocks via INT 21/AH=49h
  6691. --------E-21FF--DH11-------------------------
  6692. INT 21 UP - Rational Systems DOS/4GW - NOP
  6693.     AH = FFh
  6694.     DH = 11h
  6695. --------E-21FF--DH12-------------------------
  6696. INT 21 UP - Rational Systems DOS/4GW - EXCHANGE ??? POINTERS
  6697.     AH = FFh
  6698.     DH = 12h
  6699.     DS:SI -> new ???
  6700.     ES:DI -> new ???
  6701. Return: DS:SI -> previous ???
  6702.     ES:DI -> previous ???
  6703. --------E-21FF--DH13-------------------------
  6704. INT 21 UP - Rational Systems DOS/4GW - ???
  6705.     AH = FFh
  6706.     DH = 13h
  6707.     AL = ???
  6708.     ES = ???
  6709. Return: ???
  6710. --------E-21FF--DH14-------------------------
  6711. INT 21 UP - Rational Systems DOS/4GW - ???
  6712.     AH = FFh
  6713.     DH = 14h
  6714.     BX = ???
  6715.     CX = ???
  6716. Return: CF clear
  6717.         AX = ???
  6718.         DX = ???
  6719. --------E-21FF--DH15-------------------------
  6720. INT 21 UP - Rational Systems DOS/4GW - GET ??? FUNCTIONS
  6721.     AH = FFh
  6722.     DH = 15h
  6723. Return: CF clear
  6724.         DX:AX -> FAR function for ???
  6725.         CX:BX -> FAR function for ???
  6726.         SI:DI -> FAR function for ???
  6727. --------E-21FF--DH16-------------------------
  6728. INT 21 UP - Rational Systems DOS/4GW - GET ???
  6729.     AH = FFh
  6730.     DH = 16h
  6731. Return: AX = ???
  6732. --------E-21FF--DH17-------------------------
  6733. INT 21 UP - Rational Systems DOS/4GW - ???
  6734.     AH = FFH
  6735.     DH = 17h
  6736.     AL = ???
  6737.     DL = ???
  6738. Return: ???
  6739. --------E-21FF00DX0078-----------------------
  6740. INT 21 - Rational Systems DOS/4G - INSTALLATION CHECK
  6741.     AX = FF00h
  6742.     DX = 0078h
  6743. Return: AL <> 00h if installed
  6744.         GS = segment of kernel if nonzero
  6745. SeeAlso: INT 15/AX=BF02h
  6746. --------v-21FF0F-----------------------------
  6747. INT 21 - FLU_SHOT+ v1.83 - INSTALLATION CHECK
  6748.     AX = FF0Fh
  6749. Return: AX = 0101h if resident
  6750. Program: FLU_SHOT+ is an antivirus/antitrojan program by Ross M. Greenberg and
  6751.       Software Concepts Design
  6752. Note:    the "PSQR/1720" virus calls this function to determine whether
  6753.       FLU_SHOT+ is present
  6754. SeeAlso: AH=FFh"VIRUS",AX=FF10h
  6755. --------v-21FF10-----------------------------
  6756. INT 21 - VIRUS - "Twins" - INSTALLATION CHECK
  6757.     AX = FF10h
  6758. Return: AL = 07h if resident
  6759. SeeAlso: AX=FF0Fh,AX=FFFEh
  6760. --------v-21FFFE-----------------------------
  6761. INT 21 - VIRUS - "08/15"/"Many Fingers" - INSTALLATION CHECK
  6762.     AX = FFFEh
  6763. Return: AX = 0815h if resident
  6764. SeeAlso: AX=FF10h,AX=FFFFh
  6765. --------v-21FFFF-----------------------------
  6766. INT 21 - VIRUS - "Ontario", "Year 1992"/"B1M92" - INSTALLATION CHECK
  6767.     AX = FFFFh
  6768. Return: AX = 0000h if "Ontario" resident
  6769.     AX = 1992h if "Year 1992"/"B1M92" resident
  6770. SeeAlso: AX=FF0Fh,AX=FFFFh/CX=0000h,INT 6B"VIRUS"
  6771. --------v-21FFFFCX0000-----------------------
  6772. INT 21 - VIRUS - "Revenge" - INSTALLATION CHECK
  6773.     AX = FFFFh
  6774.     CX = 0000h
  6775. Return: CX = 0006h if resident
  6776. SeeAlso: AX=FFFFh,INT 6B"VIRUS"
  6777. --------!------------------------------------
  6778.